HomeSort by relevance Sort by last modified time
    Searched refs:FXSYS_atoi (Results 1 - 7 of 7) sorted by null

  /external/pdfium/core/fxcrt/
fx_system_unittest.cpp 215 TEST(fxcrt, FXSYS_atoi) {
216 EXPECT_EQ(0, FXSYS_atoi(""));
217 EXPECT_EQ(0, FXSYS_atoi("0"));
218 EXPECT_EQ(-1, FXSYS_atoi("-1"));
219 EXPECT_EQ(2345, FXSYS_atoi("2345"));
220 EXPECT_EQ(-2147483647, FXSYS_atoi("-2147483647"));
222 EXPECT_EQ(-2345, FXSYS_atoi("-2345"));
223 EXPECT_EQ(2345, FXSYS_atoi("+2345"));
225 EXPECT_EQ(2147483647, FXSYS_atoi("2147483647"));
228 EXPECT_EQ(-2147483647 - 1, FXSYS_atoi("-2147483648"))
    [all...]
fx_system.cpp 93 int32_t FXSYS_atoi(const char* str) {
fx_system.h 222 int32_t FXSYS_atoi(const char* str);
  /external/pdfium/fxjs/xfa/
cjx_boolean.cpp 36 int32_t iValue = FXSYS_atoi(newValue.c_str());
  /external/pdfium/core/fpdfdoc/
cpdf_pagelabel.cpp 141 int nPage = FXSYS_atoi(ByteString(bsLabel).c_str()); // NUL terminate.
  /external/pdfium/fxbarcode/oned/
BC_OnedCode128Writer.cpp 195 patternIndex = FXSYS_atoi(
  /external/pdfium/core/fpdfapi/parser/
cpdf_parser.cpp 593 const int32_t version = FXSYS_atoi(pEntry + 11);
926 m_LastXRefOffset = FXSYS_atoi(bsOffset.c_str());
    [all...]

Completed in 171 milliseconds