Home | History | Annotate | Download | only in base

Lines Matching refs:HEX_CHARS

1613         .append(HEX_CHARS[(codePoint >>> 12) & 0xf])
1614 .append(HEX_CHARS[(codePoint >>> 8) & 0xf])
1615 .append(HEX_CHARS[(codePoint >>> 4) & 0xf])
1616 .append(HEX_CHARS[codePoint & 0xf]);
2681 private static final char[] HEX_CHARS
2684 private static final char[] OCTAL_CHARS = HEX_CHARS; // ignore the last 8 :)
2708 hex.append(HEX_CHARS[nibble1]);
2709 hex.append(HEX_CHARS[nibble2]);