Home
last modified time | relevance | path

Searched refs:spNum (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/xfa/fxfa/parser/
Dcxfa_localevalue.cpp688 pdfium::span<const wchar_t> spNum = wsNumeric.span(); in ValidateNumericTemp() local
692 wchar_t c = spNum[n]; in ValidateNumericTemp()
704 FXSYS_IsDecimalDigit(c = spNum[n])) { in ValidateNumericTemp()
740 FXSYS_IsDecimalDigit(spNum[n])) { in ValidateNumericTemp()
/external/pdfium/xfa/fgas/crt/
Dcfgas_stringformatter.cpp199 pdfium::span<const wchar_t> spNum = wsNum.span(); in GetNumericDotIndex() local
201 for (size_t ccf = 0; ccf < spNum.size(); ++ccf) { in GetNumericDotIndex()
202 if (spNum[ccf] == '\'') { in GetNumericDotIndex()
203 GetLiteralText(spNum, &ccf); in GetNumericDotIndex()
206 if (ccf + spDotSymbol.size() <= spNum.size() && in GetNumericDotIndex()
207 wcsncmp(&spNum[ccf], spDotSymbol.data(), spDotSymbol.size()) == 0) { in GetNumericDotIndex()
213 *iDotIndex = result.value_or(spNum.size()); in GetNumericDotIndex()