Home
last modified time | relevance | path

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

/external/pdfium/core/fpdfdoc/
Dcpdf_defaultappearance.cpp49 *fFontSize = FX_atof(syntax.GetWord()); in GetFont()
124 fc[0] = FX_atof(syntax.GetWord()); in GetColor()
130 fc[0] = FX_atof(syntax.GetWord()); in GetColor()
131 fc[1] = FX_atof(syntax.GetWord()); in GetColor()
132 fc[2] = FX_atof(syntax.GetWord()); in GetColor()
138 fc[0] = FX_atof(syntax.GetWord()); in GetColor()
139 fc[1] = FX_atof(syntax.GetWord()); in GetColor()
140 fc[2] = FX_atof(syntax.GetWord()); in GetColor()
141 fc[3] = FX_atof(syntax.GetWord()); in GetColor()
157 float g = FX_atof(syntax.GetWord()) * 255 + 0.5f; in GetColor()
[all …]
Dcpdf_formfield.cpp930 m_FontSize = FX_atof(syntax.GetWord()); in LoadDA()
Dcpvt_generateap.cpp911 float fFontSize = FX_atof(syntax.GetWord()); in GenerateFormAP()
/external/pdfium/core/fxge/
Dcfx_color.cpp89 return CFX_Color(CFX_Color::kGray, FX_atof(syntax.GetWord())); in ParseColor()
92 float f1 = FX_atof(syntax.GetWord()); in ParseColor()
93 float f2 = FX_atof(syntax.GetWord()); in ParseColor()
94 float f3 = FX_atof(syntax.GetWord()); in ParseColor()
98 float f1 = FX_atof(syntax.GetWord()); in ParseColor()
99 float f2 = FX_atof(syntax.GetWord()); in ParseColor()
100 float f3 = FX_atof(syntax.GetWord()); in ParseColor()
101 float f4 = FX_atof(syntax.GetWord()); in ParseColor()
/external/pdfium/core/fxcrt/
Dfx_string.cpp90 *pFloat = FX_atof(strc); in FX_atonum()
144 float FX_atof(const ByteStringView& strc) { in FX_atof() function
183 float FX_atof(const WideStringView& wsStr) { in FX_atof() function
184 return FX_atof(FX_UTF8Encode(wsStr).c_str()); in FX_atof()
Dfx_string.h18 float FX_atof(const ByteStringView& str);
19 float FX_atof(const WideStringView& wsStr);
/external/pdfium/fxjs/
Dcjs_publicmethods.cpp1206 int nDay = FX_atof(wsArray[2].AsStringView()); in MakeInterDate()
1207 int nHour = FX_atof(wsArray[3].AsStringView()); in MakeInterDate()
1208 int nMin = FX_atof(wsArray[4].AsStringView()); in MakeInterDate()
1209 int nSec = FX_atof(wsArray[5].AsStringView()); in MakeInterDate()
1210 int nYear = FX_atof(wsArray[7].AsStringView()); in MakeInterDate()
1607 dTemp = FX_atof(trimmed.AsStringView()); in AFSimple_Calculate()
1622 dTemp = FX_atof(trimmed.AsStringView()); in AFSimple_Calculate()
1631 dTemp = FX_atof(trimmed.AsStringView()); in AFSimple_Calculate()
/external/pdfium/core/fpdfapi/page/
Dcpdf_psengine.cpp173 m_Operators.push_back(pdfium::MakeUnique<CPDF_PSOP>(FX_atof(word))); in AddOperator()