Home
last modified time | relevance | path

Searched refs:FXSYS_IsDecimalDigit (Results 1 – 25 of 29) sorted by relevance

12

/external/pdfium/core/fxcrt/
Dfx_extension_unittest.cpp27 TEST(fxcrt, FXSYS_IsDecimalDigit) { in TEST() argument
28 EXPECT_TRUE(FXSYS_IsDecimalDigit('7')); in TEST()
29 EXPECT_TRUE(FXSYS_IsDecimalDigit(L'7')); in TEST()
30 EXPECT_FALSE(FXSYS_IsDecimalDigit('a')); in TEST()
31 EXPECT_FALSE(FXSYS_IsDecimalDigit(L'a')); in TEST()
32 EXPECT_FALSE(FXSYS_IsDecimalDigit(static_cast<char>(-78))); in TEST()
33 EXPECT_FALSE(FXSYS_IsDecimalDigit(static_cast<wchar_t>(0xb2))); in TEST()
Dfx_extension.h93 inline bool FXSYS_IsDecimalDigit(char c) { in FXSYS_IsDecimalDigit() function
97 inline bool FXSYS_IsDecimalDigit(wchar_t c) { in FXSYS_IsDecimalDigit() function
102 return FXSYS_IsDecimalDigit(c) ? c - '0' : 0; in FXSYS_DecimalCharToInt()
106 return FXSYS_IsDecimalDigit(c) ? c - L'0' : 0; in FXSYS_DecimalCharToInt()
Dfx_extension.cpp52 if (!FXSYS_IsDecimalDigit(wch)) in FXSYS_wcstof()
63 if (!FXSYS_IsDecimalDigit(wch)) in FXSYS_wcstof()
85 if (!FXSYS_IsDecimalDigit(wch)) in FXSYS_wcstof()
Dfx_system.cpp32 while (*str && FXSYS_IsDecimalDigit(*str)) { in FXSYS_StrToInt()
Dwidestring.cpp80 while (FXSYS_IsDecimalDigit(*pStr)) in GuessSizeForVSWPrintf()
93 while (FXSYS_IsDecimalDigit(*pStr)) in GuessSizeForVSWPrintf()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_localevalue.cpp384 if (!FXSYS_IsDecimalDigit(spDate[nIndex])) in ValidateCanonicalDate()
399 if (!FXSYS_IsDecimalDigit(spDate[nIndex])) in ValidateCanonicalDate()
414 if (!FXSYS_IsDecimalDigit(spDate[nIndex])) in ValidateCanonicalDate()
461 if (!FXSYS_IsDecimalDigit(spTime[nIndex])) in ValidateCanonicalTime()
475 if (!FXSYS_IsDecimalDigit(spTime[nIndex])) in ValidateCanonicalTime()
488 if (!FXSYS_IsDecimalDigit(spTime[nIndex])) in ValidateCanonicalTime()
501 if (!FXSYS_IsDecimalDigit(spTime[nIndex])) in ValidateCanonicalTime()
517 if (!FXSYS_IsDecimalDigit(spTime[nIndex])) in ValidateCanonicalTime()
530 if (!FXSYS_IsDecimalDigit(spTime[nIndex])) in ValidateCanonicalTime()
677 FXSYS_IsDecimalDigit(c = spNum[n])) { in ValidateNumericTemp()
[all …]
/external/pdfium/core/fpdftext/
Dcpdf_textpagefind.cpp57 FXSYS_IsDecimalDigit(char_left) || in IsMatchWholeWord()
61 FXSYS_IsDecimalDigit(char_right)) { in IsMatchWholeWord()
71 if (FXSYS_IsDecimalDigit(char_left) && in IsMatchWholeWord()
72 FXSYS_IsDecimalDigit(csPageText[startPos])) { in IsMatchWholeWord()
75 if (FXSYS_IsDecimalDigit(char_right) && in IsMatchWholeWord()
76 FXSYS_IsDecimalDigit(csPageText[endPos])) { in IsMatchWholeWord()
Dcpdf_linkextract.cpp42 while (off < len && FXSYS_IsDecimalDigit(str[off])) in FindWebLinkEnding()
57 if (FXSYS_IsDecimalDigit(str[end]) || in FindWebLinkEnding()
/external/pdfium/fxbarcode/datamatrix/
DBC_ASCIIEncoder.cpp35 if (!FXSYS_IsDecimalDigit(digit1) || !FXSYS_IsDecimalDigit(digit2)) { in EncodeASCIIDigits()
50 if (!FXSYS_IsDecimalDigit(data[i])) in DetermineConsecutiveDigitCount()
DBC_TextEncoder.cpp46 if (FXSYS_IsDecimalDigit(c)) { in EncodeChar()
DBC_X12Encoder.cpp95 else if (FXSYS_IsDecimalDigit(c)) in EncodeChar()
DBC_C40Encoder.cpp148 if (FXSYS_IsDecimalDigit(c)) { in EncodeChar()
DBC_HighLevelEncoder.cpp226 if (FXSYS_IsDecimalDigit(c)) in LookAheadTest()
/external/pdfium/core/fxge/dib/
Dfx_dib_main.cpp125 if (str[cc] == ',' || !FXSYS_IsDecimalDigit(str[cc])) in StringToFXARGB()
137 if (str[cc] == ',' || !FXSYS_IsDecimalDigit(str[cc])) in StringToFXARGB()
149 if (str[cc] == ',' || !FXSYS_IsDecimalDigit(str[cc])) in StringToFXARGB()
/external/pdfium/xfa/fgas/crt/
Dcfgas_stringformatter.cpp217 if (*cc >= spStr.size() || !FXSYS_IsDecimalDigit(spStr[*cc])) in ExtractCountDigits()
1095 if (FXSYS_IsDecimalDigit(spSrcText[iText]) || in ParseText()
1103 if (FXSYS_IsDecimalDigit(spSrcText[iText])) { in ParseText()
1183 if (!FXSYS_IsDecimalDigit(spSrcNum[cc])) in ParseNum()
1193 if (FXSYS_IsDecimalDigit(spSrcNum[cc])) { in ParseNum()
1224 if (FXSYS_IsDecimalDigit(spSrcNum[cc])) { in ParseNum()
1374 if (!FXSYS_IsDecimalDigit(spSrcNum[cc])) in ParseNum()
1383 if (FXSYS_IsDecimalDigit(spSrcNum[cc])) { in ParseNum()
1423 if (!FXSYS_IsDecimalDigit(spSrcNum[cc])) in ParseNum()
1493 while (cc < spSrcNum.size() && FXSYS_IsDecimalDigit(spSrcNum[cc])) { in ParseNum()
[all …]
/external/pdfium/fxbarcode/oned/
DBC_OnedEAN8Writer.cpp69 [](wchar_t c) { return FXSYS_IsDecimalDigit(c); }); in CheckContentValidity()
82 if (FXSYS_IsDecimalDigit(ch)) in FilterContents()
DBC_OnedEAN13Writer.cpp63 [](wchar_t c) { return FXSYS_IsDecimalDigit(c); }); in CheckContentValidity()
76 if (FXSYS_IsDecimalDigit(ch)) in FilterContents()
DBC_OnedCode39Writer.cpp57 return FXSYS_IsDecimalDigit(ch) || (ch >= L'A' && ch <= L'Z') || ch == L'-' || in IsInOnedCode39Alphabet()
DBC_OnedUPCAWriter.cpp60 if (FXSYS_IsDecimalDigit(ch)) in FilterContents()
/external/pdfium/fxbarcode/pdf417/
DBC_PDF417HighLevelEncoder.cpp319 while (FXSYS_IsDecimalDigit(ch) && idx < len) { in DetermineConsecutiveDigitCount()
337 while (numericCount < 13 && FXSYS_IsDecimalDigit(ch) && idx < len) { in DetermineConsecutiveTextCount()
364 while (numericCount < 13 && FXSYS_IsDecimalDigit(ch)) { in DetermineConsecutiveBinaryCount()
/external/pdfium/fxjs/
Dcjs_util.cpp341 if (FXSYS_IsDecimalDigit(wsSource[iSourceIdx])) { in StringPrintx()
423 if (FXSYS_IsDecimalDigit(c)) { in ParseDataType()
435 if (FXSYS_IsDecimalDigit(c)) { in ParseDataType()
Dcjs_publicmethods.cpp285 } else if (!FXSYS_IsDecimalDigit(c)) { in JS_STATIC_GLOBAL_FUN()
297 return !!FXSYS_IsDecimalDigit(c_Change); in MaskSatisfied()
367 if (FXSYS_IsDecimalDigit(c)) { in ParseDate()
767 if (!FXSYS_IsDecimalDigit(wstrChange[i])) { in AFNumber_Keystroke()
1436 if (FXSYS_IsDecimalDigit(wc)) { in AFExtractNums()
Dfx_date_helpers.cpp281 if (!FXSYS_IsDecimalDigit(c)) in FX_ParseStringInteger()
/external/pdfium/core/fxcrt/css/
Dcfx_cssvaluelistparser.cpp36 } else if (FXSYS_IsDecimalDigit(wch) || wch == '.' || wch == '-' || in NextValue()
/external/pdfium/xfa/fxfa/fm2js/
Dcxfa_fmlexer.cpp282 if (FXSYS_IsDecimalDigit(m_spInput[m_nCursor])) { in NextToken()

12