Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/
Dfx_system_unittest.cpp215 TEST(fxcrt, FXSYS_atoi) { in TEST() argument
216 EXPECT_EQ(0, FXSYS_atoi("")); in TEST()
217 EXPECT_EQ(0, FXSYS_atoi("0")); in TEST()
218 EXPECT_EQ(-1, FXSYS_atoi("-1")); in TEST()
219 EXPECT_EQ(2345, FXSYS_atoi("2345")); in TEST()
220 EXPECT_EQ(-2147483647, FXSYS_atoi("-2147483647")); in TEST()
222 EXPECT_EQ(-2345, FXSYS_atoi("-2345")); in TEST()
223 EXPECT_EQ(2345, FXSYS_atoi("+2345")); in TEST()
225 EXPECT_EQ(2147483647, FXSYS_atoi("2147483647")); in TEST()
228 EXPECT_EQ(-2147483647 - 1, FXSYS_atoi("-2147483648")); in TEST()
[all …]
Dfx_system.cpp93 int32_t FXSYS_atoi(const char* str) { in FXSYS_atoi() function
Dfx_system.h222 int32_t FXSYS_atoi(const char* str);
/external/pdfium/fxjs/xfa/
Dcjx_boolean.cpp36 int32_t iValue = FXSYS_atoi(newValue.c_str()); in defaultValue()
/external/pdfium/core/fpdfdoc/
Dcpdf_pagelabel.cpp141 int nPage = FXSYS_atoi(ByteString(bsLabel).c_str()); // NUL terminate. in GetPageByLabel()
/external/pdfium/fxbarcode/oned/
DBC_OnedCode128Writer.cpp195 patternIndex = FXSYS_atoi( in Encode128C()
/external/pdfium/fxjs/
Dcfxjse_formcalc_context.cpp1745 iYear = FXSYS_atoi(strYear); in IsIsoDateFormat()
1760 iMonth = FXSYS_atoi(strTemp); in IsIsoDateFormat()
1778 iDay = FXSYS_atoi(strTemp); in IsIsoDateFormat()
1843 if (FXSYS_atoi(strTemp) > 60) in IsIsoTimeFormat()
1848 iHour = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1851 iMinute = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1854 iSecond = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1859 iHour = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1862 iMinute = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1865 iSecond = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
[all …]
/external/pdfium/core/fpdfapi/parser/
Dcpdf_parser.cpp593 const int32_t version = FXSYS_atoi(pEntry + 11); in ParseAndAppendCrossRefSubsectionData()
926 m_LastXRefOffset = FXSYS_atoi(bsOffset.c_str()); in RebuildCrossRef()