Home
last modified time | relevance | path

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

/external/pdfium/xfa/src/fgas/src/localization/
Dfx_locale.cpp597 int32_t iKeyValue = 0; in FX_GetLiteralText() local
603 iKeyValue = iKeyValue * 16 + ch - '0'; in FX_GetLiteralText()
605 iKeyValue = iKeyValue * 16 + ch - 'a' + 10; in FX_GetLiteralText()
607 iKeyValue = iKeyValue * 16 + ch - 'A' + 10; in FX_GetLiteralText()
610 if (iKeyValue != 0) { in FX_GetLiteralText()
611 wsOutput += (FX_WCHAR)(iKeyValue & 0x0000FFFF); in FX_GetLiteralText()
640 int32_t iKeyValue = 0; in FX_GetLiteralTextReverse() local
646 iKeyValue = iKeyValue * 16 + ch - '0'; in FX_GetLiteralTextReverse()
648 iKeyValue = iKeyValue * 16 + ch - 'a' + 10; in FX_GetLiteralTextReverse()
650 iKeyValue = iKeyValue * 16 + ch - 'A' + 10; in FX_GetLiteralTextReverse()
[all …]