Home
last modified time | relevance | path

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

/external/webkit/WebCore/platform/network/
DFormDataBuilder.cpp231 static const char hexDigits[17] = "0123456789ABCDEF"; in encodeStringAsFormData() local
249 append(buffer, hexDigits[c >> 4]); in encodeStringAsFormData()
250 append(buffer, hexDigits[c & 0xF]); in encodeStringAsFormData()
/external/webkit/JavaScriptCore/runtime/
DJSONObject.cpp321 static const char hexDigits[] = "0123456789abcdef"; in appendQuotedString()
323 …UChar hex[] = { '\\', 'u', hexDigits[(ch >> 12) & 0xF], hexDigits[(ch >> 8) & 0xF], hexDigits[(ch … in appendQuotedString()
/external/webkit/WebCore/platform/
DKURL.cpp89 static const char hexDigits[17] = "0123456789ABCDEF"; variable
943 *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()