Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(852)

Side by Side Diff: core/src/fpdfdoc/doc_utils.cpp

Issue 1577503002: Merge to XFA: Switch most min/max macros to std::min/max. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: rebase Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « core/src/fpdfdoc/doc_formcontrol.cpp ('k') | core/src/fpdfdoc/doc_vt.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #include <algorithm>
8
7 #include "core/include/fpdfdoc/fpdf_doc.h" 9 #include "core/include/fpdfdoc/fpdf_doc.h"
8 #include "doc_utils.h" 10 #include "doc_utils.h"
9 11
10 static const int FPDFDOC_UTILS_MAXRECURSION = 32; 12 static const int FPDFDOC_UTILS_MAXRECURSION = 32;
11 13
12 CFX_WideString GetFullName(CPDF_Dictionary* pFieldDict) { 14 CFX_WideString GetFullName(CPDF_Dictionary* pFieldDict) {
13 CFX_WideString full_name; 15 CFX_WideString full_name;
14 CPDF_Dictionary* pLevel = pFieldDict; 16 CPDF_Dictionary* pLevel = pFieldDict;
15 while (pLevel) { 17 while (pLevel) {
16 CFX_WideString short_name = pLevel->GetUnicodeText("T"); 18 CFX_WideString short_name = pLevel->GetUnicodeText("T");
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 color = ArgbEncode(255, (int)r, (int)g, (int)b); 174 color = ArgbEncode(255, (int)r, (int)g, (int)b);
173 return; 175 return;
174 } 176 }
175 syntax.SetPos(0); 177 syntax.SetPos(0);
176 if (syntax.FindTagParam(bStrokingOperation ? "K" : "k", 4)) { 178 if (syntax.FindTagParam(bStrokingOperation ? "K" : "k", 4)) {
177 iColorType = COLORTYPE_CMYK; 179 iColorType = COLORTYPE_CMYK;
178 FX_FLOAT c = FX_atof((CFX_ByteString)syntax.GetWord()); 180 FX_FLOAT c = FX_atof((CFX_ByteString)syntax.GetWord());
179 FX_FLOAT m = FX_atof((CFX_ByteString)syntax.GetWord()); 181 FX_FLOAT m = FX_atof((CFX_ByteString)syntax.GetWord());
180 FX_FLOAT y = FX_atof((CFX_ByteString)syntax.GetWord()); 182 FX_FLOAT y = FX_atof((CFX_ByteString)syntax.GetWord());
181 FX_FLOAT k = FX_atof((CFX_ByteString)syntax.GetWord()); 183 FX_FLOAT k = FX_atof((CFX_ByteString)syntax.GetWord());
182 FX_FLOAT r = 1.0f - FX_MIN(1.0f, c + k); 184 FX_FLOAT r = 1.0f - std::min(1.0f, c + k);
183 FX_FLOAT g = 1.0f - FX_MIN(1.0f, m + k); 185 FX_FLOAT g = 1.0f - std::min(1.0f, m + k);
184 FX_FLOAT b = 1.0f - FX_MIN(1.0f, y + k); 186 FX_FLOAT b = 1.0f - std::min(1.0f, y + k);
185 color = ArgbEncode(255, (int)(r * 255 + 0.5f), (int)(g * 255 + 0.5f), 187 color = ArgbEncode(255, (int)(r * 255 + 0.5f), (int)(g * 255 + 0.5f),
186 (int)(b * 255 + 0.5f)); 188 (int)(b * 255 + 0.5f));
187 } 189 }
188 } 190 }
189 FX_BOOL CPDF_DefaultAppearance::HasTextMatrix() { 191 FX_BOOL CPDF_DefaultAppearance::HasTextMatrix() {
190 if (m_csDA.IsEmpty()) { 192 if (m_csDA.IsEmpty()) {
191 return FALSE; 193 return FALSE;
192 } 194 }
193 CPDF_SimpleParser syntax(m_csDA); 195 CPDF_SimpleParser syntax(m_csDA);
194 return syntax.FindTagParam("Tm", 6); 196 return syntax.FindTagParam("Tm", 6);
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 CPDF_Object* pAttr = pFieldDict->GetElementValue(name); 701 CPDF_Object* pAttr = pFieldDict->GetElementValue(name);
700 if (pAttr) { 702 if (pAttr) {
701 return pAttr; 703 return pAttr;
702 } 704 }
703 CPDF_Dictionary* pParent = pFieldDict->GetDict("Parent"); 705 CPDF_Dictionary* pParent = pFieldDict->GetDict("Parent");
704 if (!pParent) { 706 if (!pParent) {
705 return NULL; 707 return NULL;
706 } 708 }
707 return FPDF_GetFieldAttr(pParent, name, nLevel + 1); 709 return FPDF_GetFieldAttr(pParent, name, nLevel + 1);
708 } 710 }
OLDNEW
« no previous file with comments | « core/src/fpdfdoc/doc_formcontrol.cpp ('k') | core/src/fpdfdoc/doc_vt.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698