Searched refs:hexDigits (Results 1 – 3 of 3) sorted by relevance
231 static const char hexDigits[17] = "0123456789ABCDEF"; in encodeStringAsFormData() local249 append(buffer, hexDigits[c >> 4]); in encodeStringAsFormData()250 append(buffer, hexDigits[c & 0xF]); in encodeStringAsFormData()
321 static const char hexDigits[] = "0123456789abcdef"; in appendQuotedString()323 …UChar hex[] = { '\\', 'u', hexDigits[(ch >> 12) & 0xF], hexDigits[(ch >> 8) & 0xF], hexDigits[(ch … in appendQuotedString()
89 static const char hexDigits[17] = "0123456789ABCDEF"; variable943 *p++ = hexDigits[c >> 4]; in appendEscapingBadChars()944 *p++ = hexDigits[c & 0xF]; in appendEscapingBadChars()1383 *p++ = hexDigits[c >> 4]; in encodeWithURLEscapeSequences()1384 *p++ = hexDigits[c & 0xF]; in encodeWithURLEscapeSequences()