Home
last modified time | relevance | path

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

/external/webkit/WebCore/platform/qt/
DKURLQt.cpp32 static inline char toHex(char c) in toHex() function
71 ba.append(toHex((chr & 0xf0) >> 4)); in operator QUrl()
72 ba.append(toHex(chr & 0xf)); in operator QUrl()
/external/nist-sip/java/gov/nist/javax/sip/
DUtils.java63 private static final char[] toHex = { '0', '1', '2', '3', '4', '5', '6', field in Utils
93 c[pos++] = toHex[(b[i] >> 4) & 0x0F]; in toHexString()
94 c[pos++] = toHex[b[i] & 0x0f]; in toHexString()
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
DMessageDigestAlgorithm.java206 private static final char[] toHex = { field in MessageDigestAlgorithm
220 c[pos++] = toHex[(b[i] >> 4) & 0x0F]; in toHexString()
221 c[pos++] = toHex[b[i] & 0x0f]; in toHexString()
/external/icu4c/test/intltest/
Dintltest.cpp1519 static inline UChar toHex(int32_t i) { in toHex() function
1531 result += toHex((c >> 12) & 0xF); in escape()
1532 result += toHex((c >> 8) & 0xF); in escape()
1533 result += toHex((c >> 4) & 0xF); in escape()
1534 result += toHex( c & 0xF); in escape()
/external/chromium/third_party/icu/source/test/intltest/
Dintltest.cpp1494 static inline UChar toHex(int32_t i) { in toHex() function
1506 result += toHex((c >> 12) & 0xF); in escape()
1507 result += toHex((c >> 8) & 0xF); in escape()
1508 result += toHex((c >> 4) & 0xF); in escape()
1509 result += toHex( c & 0xF); in escape()
/external/webkit/WebKitTools/DumpRenderTree/qt/
DDumpRenderTreeQt.cpp696 QString actualHash = hash.result().toHex(); in dump()
/external/webkit/WebCore/
DChangeLog-2003-10-2511701 (toHex):
11738 (toHex):
DChangeLog-2006-05-101391 (WebCore::toHex): Rewrote to just take a UChar parameter.
1392 (WebCore::StyledElement::addCSSColor): Call toHex on the character code.
DChangeLog-2010-01-2970537 StyledElement should use ASCIICType instead of having its own toHex function
76130 (WebInspector.Color.prototype.toHex):
87792 (WebCore::toHex):
DChangeLog-2005-08-2317500 (toHex):
50851 (toHex):
DChangeLog-2008-08-1056379 (WebCore::toHex):