Lines Matching refs:iKeyValue
109 int32_t ConvertHex(int32_t iKeyValue, wchar_t ch) { in ConvertHex() argument
111 return iKeyValue * 16 + FXSYS_HexCharToInt(ch); in ConvertHex()
112 return iKeyValue; in ConvertHex()
135 int32_t iKeyValue = 0; in GetLiteralText() local
139 iKeyValue = ConvertHex(iKeyValue, ch); in GetLiteralText()
141 if (iKeyValue != 0) in GetLiteralText()
142 wsOutput += static_cast<wchar_t>(iKeyValue & 0x0000FFFF); in GetLiteralText()
173 int32_t iKeyValue = 0; in GetLiteralTextReverse() local
178 iKeyValue = ConvertHex(iKeyValue, ch); in GetLiteralTextReverse()
180 if (iKeyValue != 0) { in GetLiteralTextReverse()
182 wsOutput = (wchar_t)(iKeyValue & 0x0000FFFF) + wsOutput; in GetLiteralTextReverse()