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

  /external/pdfium/core/fxcrt/
fx_system_unittest.cpp 260 TEST(fxcrt, FXSYS_wtoi) {
261 EXPECT_EQ(0, FXSYS_wtoi(L""));
262 EXPECT_EQ(0, FXSYS_wtoi(L"0"));
263 EXPECT_EQ(-1, FXSYS_wtoi(L"-1"));
264 EXPECT_EQ(2345, FXSYS_wtoi(L"2345"));
265 EXPECT_EQ(-2147483647, FXSYS_wtoi(L"-2147483647"));
267 EXPECT_EQ(2147483647, FXSYS_wtoi(L"2147483647"));
269 EXPECT_EQ(-2147483647 - 1, FXSYS_wtoi(L"-2147483648"));
272 EXPECT_EQ(2147483647, FXSYS_wtoi(L"2147483623423412348"));
273 EXPECT_EQ(2147483647, FXSYS_wtoi(L"2147483648"))
    [all...]
fx_system.cpp 99 int32_t FXSYS_wtoi(const wchar_t* str) {
fx_system.h 224 int32_t FXSYS_wtoi(const wchar_t* str);
widestring.cpp 80 nWidth = FXSYS_wtoi(pStr);
93 nPrecision = FXSYS_wtoi(pStr);
1057 return m_pData ? FXSYS_wtoi(m_pData->m_String) : 0;
  /external/pdfium/xfa/fxfa/parser/
cxfa_font.cpp 77 int32_t iScale = FXSYS_wtoi(wsValue.c_str());
83 int32_t iScale = FXSYS_wtoi(wsValue.c_str());
cxfa_document.cpp 314 int8_t iMajor = FXSYS_wtoi(
317 FXSYS_wtoi(wsTemplateNS
cxfa_node.cpp     [all...]
  /external/pdfium/fxjs/xfa/
cjx_field.cpp 286 pValue->SetInteger(FXSYS_wtoi(content.c_str()));
288 pValue->SetBoolean(FXSYS_wtoi(content.c_str()) == 0 ? false : true);
cjx_object.cpp     [all...]
  /external/pdfium/fxjs/
cjs_field.cpp 196 iControlNo = FXSYS_wtoi(suffixal.c_str());
    [all...]

Completed in 620 milliseconds