Searched refs:FXSYS_atoi (Results 1 – 8 of 8) sorted by relevance
/external/pdfium/core/fxcrt/ |
D | fx_system_unittest.cpp | 215 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 …]
|
D | fx_system.cpp | 93 int32_t FXSYS_atoi(const char* str) { in FXSYS_atoi() function
|
D | fx_system.h | 222 int32_t FXSYS_atoi(const char* str);
|
/external/pdfium/fxjs/xfa/ |
D | cjx_boolean.cpp | 36 int32_t iValue = FXSYS_atoi(newValue.c_str()); in defaultValue()
|
/external/pdfium/core/fpdfdoc/ |
D | cpdf_pagelabel.cpp | 141 int nPage = FXSYS_atoi(ByteString(bsLabel).c_str()); // NUL terminate. in GetPageByLabel()
|
/external/pdfium/fxbarcode/oned/ |
D | BC_OnedCode128Writer.cpp | 195 patternIndex = FXSYS_atoi( in Encode128C()
|
/external/pdfium/fxjs/ |
D | cfxjse_formcalc_context.cpp | 1745 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/ |
D | cpdf_parser.cpp | 593 const int32_t version = FXSYS_atoi(pEntry + 11); in ParseAndAppendCrossRefSubsectionData() 926 m_LastXRefOffset = FXSYS_atoi(bsOffset.c_str()); in RebuildCrossRef()
|