Home
last modified time | relevance | path

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

/packages/services/BuiltInPrintService/src/com/android/bips/ipp/
DCertificateStore.java154 private static final char[] HEX_CHARS = "0123456789ABCDEF".toCharArray(); field in CertificateStore
165 hexChars[i * 2] = HEX_CHARS[b >>> 4]; in bytesToHex()
166 hexChars[i * 2 + 1] = HEX_CHARS[b & 0x0F]; in bytesToHex()
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
DDigestMd5Utils.java52 private static final String HEX_CHARS = "0123456789abcdef"; field in DigestMd5Utils
215 .append(HEX_CHARS.charAt(unsignedByte / 16)) in toHex()
216 .append(HEX_CHARS.charAt(unsignedByte % 16)); in toHex()
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
DStringUtil.java1613 .append(HEX_CHARS[(codePoint >>> 12) & 0xf]) in appendHexJavaScriptRepresentation()
1614 .append(HEX_CHARS[(codePoint >>> 8) & 0xf]) in appendHexJavaScriptRepresentation()
1615 .append(HEX_CHARS[(codePoint >>> 4) & 0xf]) in appendHexJavaScriptRepresentation()
1616 .append(HEX_CHARS[codePoint & 0xf]); in appendHexJavaScriptRepresentation()
2681 private static final char[] HEX_CHARS local
2684 private static final char[] OCTAL_CHARS = HEX_CHARS; // ignore the last 8 :)
2708 hex.append(HEX_CHARS[nibble1]); in bytesToHexString()
2709 hex.append(HEX_CHARS[nibble2]); in bytesToHexString()