Searched refs:toHex (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DProperties.java638 outBuffer.append(toHex((aChar >> 12) & 0xF));
639 outBuffer.append(toHex((aChar >> 8) & 0xF));
640 outBuffer.append(toHex((aChar >> 4) & 0xF));
641 outBuffer.append(toHex( aChar & 0xF));
665 uu[2] = toHex((c >> 12) & 0xf);
666 uu[3] = toHex((c >> 8) & 0xf);
667 uu[4] = toHex((c >> 4) & 0xf);
668 uu[5] = toHex( c & 0xf);
1107 private static char toHex(int nibble) { method in class:Properties
/libcore/ojluni/src/main/java/sun/security/util/
H A DManifestEntryVerifier.java214 debug.println(" manifest " + toHex(manHash));
215 debug.println(" computed " + toHex(theHash));
232 // for the toHex function
241 static String toHex(byte[] data) { method in class:ManifestEntryVerifier
H A DSignatureFileVerifier.java306 debug.println( " sigfile " + toHex(expectedHash));
307 debug.println( " computed " + toHex(computedHash));
352 debug.println( " sigfile " + toHex(expectedHash));
353 debug.println( " computed " + toHex(computedHash));
433 debug.println(" expected " + toHex(expected));
434 debug.println(" computed " + toHex(computed));
447 debug.println(" re-computed " + toHex(computed));
586 // for the toHex function
595 static String toHex(byte[] data) { method in class:SignatureFileVerifier

Completed in 75 milliseconds