Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/javascript/
Dutil.cpp330 const CFX_WideString& wsSource) { in printx() argument
361 if (iSourceIdx < wsSource.GetLength()) { in printx()
362 wsResult += TranslateCase(wsSource[iSourceIdx], eCaseMode); in printx()
368 if (iSourceIdx < wsSource.GetLength()) { in printx()
369 if ((wsSource[iSourceIdx] >= '0' && wsSource[iSourceIdx] <= '9') || in printx()
370 (wsSource[iSourceIdx] >= 'a' && wsSource[iSourceIdx] <= 'z') || in printx()
371 (wsSource[iSourceIdx] >= 'A' && wsSource[iSourceIdx] <= 'Z')) { in printx()
372 wsResult += TranslateCase(wsSource[iSourceIdx], eCaseMode); in printx()
381 if (iSourceIdx < wsSource.GetLength()) { in printx()
382 if ((wsSource[iSourceIdx] >= 'a' && wsSource[iSourceIdx] <= 'z') || in printx()
[all …]
DPublicMethods.cpp1371 CFX_WideString wsSource = pEvent->Value(); in AFSpecial_Format() local
1381 if (util::printx(L"9999999999", wsSource).GetLength() >= 10) in AFSpecial_Format()
1391 pEvent->Value() = util::printx(wsFormat, wsSource); in AFSpecial_Format()