Searched refs:hexDigits (Results 1 – 5 of 5) sorted by relevance
298 private final static char[] hexDigits = "0123456789abcdef".toCharArray(); field in Debug310 sb.append(hexDigits[k >>> 4]); in toString()311 sb.append(hexDigits[k & 0xf]); in toString()
110 sb.append(hexDigits[(c >> 4) & 0x0f]);111 sb.append(hexDigits[(c) & 0x0f]);245 private final static char[] hexDigits = { field in UnixUriUtils
115 private static final String hexDigits = "0123456789ABCDEF"; field in AVA283 int cVal = hexDigits.indexOf(Character.toUpperCase((char)c)); in parseHexString()535 if (hexDigits.indexOf(Character.toUpperCase((char)c1)) >= 0) { in getEmbeddedHexPair()539 if (hexDigits.indexOf(Character.toUpperCase((char)c2)) >= 0) { in getEmbeddedHexPair()1082 retval.append(hexDigits.charAt((data [i] >> 4) & 0x0f)); in toKeywordValueString()1083 retval.append(hexDigits.charAt(data [i] & 0x0f)); in toKeywordValueString()
507 private final static char[] hexDigits = { field in ParseUtil514 sb.append(hexDigits[(b >> 4) & 0x0f]); in appendEscape()515 sb.append(hexDigits[(b >> 0) & 0x0f]); in appendEscape()
2670 private final static char[] hexDigits = { local2677 sb.append(hexDigits[(b >> 4) & 0x0f]); in appendEscape()2678 sb.append(hexDigits[(b >> 0) & 0x0f]); in appendEscape()