Home
last modified time | relevance | path

Searched refs:FX_atof (Results 1 – 8 of 8) sorted by relevance

/external/pdfium/core/fpdfdoc/
Dcpdf_defaultappearance.cpp50 fFontSize = FX_atof(syntax.GetWord()); in GetFont()
126 fc[0] = FX_atof(syntax.GetWord()); in GetColor()
132 fc[0] = FX_atof(syntax.GetWord()); in GetColor()
133 fc[1] = FX_atof(syntax.GetWord()); in GetColor()
134 fc[2] = FX_atof(syntax.GetWord()); in GetColor()
140 fc[0] = FX_atof(syntax.GetWord()); in GetColor()
141 fc[1] = FX_atof(syntax.GetWord()); in GetColor()
142 fc[2] = FX_atof(syntax.GetWord()); in GetColor()
143 fc[3] = FX_atof(syntax.GetWord()); in GetColor()
159 FX_FLOAT g = FX_atof(syntax.GetWord()) * 255 + 0.5f; in GetColor()
[all …]
Dcpvt_color.cpp15 return CPVT_Color(CPVT_Color::kGray, FX_atof(syntax.GetWord())); in ParseColor()
18 FX_FLOAT f1 = FX_atof(syntax.GetWord()); in ParseColor()
19 FX_FLOAT f2 = FX_atof(syntax.GetWord()); in ParseColor()
20 FX_FLOAT f3 = FX_atof(syntax.GetWord()); in ParseColor()
24 FX_FLOAT f1 = FX_atof(syntax.GetWord()); in ParseColor()
25 FX_FLOAT f2 = FX_atof(syntax.GetWord()); in ParseColor()
26 FX_FLOAT f3 = FX_atof(syntax.GetWord()); in ParseColor()
27 FX_FLOAT f4 = FX_atof(syntax.GetWord()); in ParseColor()
Dcpdf_formfield.cpp934 m_FontSize = FX_atof(syntax.GetWord()); in LoadDA()
Dcpvt_generateap.cpp57 FX_FLOAT fFontSize = FX_atof(syntax.GetWord()); in GenerateWidgetAP()
/external/pdfium/core/fxcrt/
Dfx_basic_util.cpp18 *pFloat = FX_atof(strc); in FX_atonum()
85 FX_FLOAT FX_atof(const CFX_ByteStringC& strc) { in FX_atof() function
Dfx_string.h428 FX_FLOAT FX_atof(const CFX_ByteStringC& str);
429 inline FX_FLOAT FX_atof(const CFX_WideStringC& wsStr) { in FX_atof() function
430 return FX_atof(FX_UTF8Encode(wsStr).c_str()); in FX_atof()
/external/pdfium/fpdfsdk/javascript/
DPublicMethods.cpp1184 int nDay = FX_atof(wsArray[2].AsStringC()); in MakeInterDate()
1185 int nHour = FX_atof(wsArray[3].AsStringC()); in MakeInterDate()
1186 int nMin = FX_atof(wsArray[4].AsStringC()); in MakeInterDate()
1187 int nSec = FX_atof(wsArray[5].AsStringC()); in MakeInterDate()
1188 int nYear = FX_atof(wsArray[7].AsStringC()); in MakeInterDate()
1656 dTemp = FX_atof(trimmed.AsStringC()); in AFSimple_Calculate()
1670 dTemp = FX_atof(trimmed.AsStringC()); in AFSimple_Calculate()
1681 dTemp = FX_atof(trimmed.AsStringC()); in AFSimple_Calculate()
/external/pdfium/core/fpdfapi/page/
Dfpdf_page_func.cpp242 std::unique_ptr<CPDF_PSOP> op(new CPDF_PSOP(FX_atof(word))); in Parse()