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

/libcore/ojluni/src/main/java/java/util/
H A DProperties.java642 outBuffer.append(toHex((aChar >> 12) & 0xF));
643 outBuffer.append(toHex((aChar >> 8) & 0xF));
644 outBuffer.append(toHex((aChar >> 4) & 0xF));
645 outBuffer.append(toHex( aChar & 0xF));
669 uu[2] = toHex((c >> 12) & 0xf);
670 uu[3] = toHex((c >> 8) & 0xf);
671 uu[4] = toHex((c >> 4) & 0xf);
672 uu[5] = toHex( c & 0xf);
1136 private static char toHex(int nibble) { method in class:Properties
/libcore/ojluni/src/main/java/sun/security/util/
H A DManifestEntryVerifier.java212 debug.println(" manifest " + toHex(manHash));
213 debug.println(" computed " + toHex(theHash));
230 // for the toHex function
239 static String toHex(byte[] data) { method in class:ManifestEntryVerifier
H A DSignatureFileVerifier.java379 debug.println( " sigfile " + toHex(expectedHash));
380 debug.println( " computed " + toHex(computedHash));
424 debug.println( " sigfile " + toHex(expectedHash));
425 debug.println( " computed " + toHex(computedHash));
504 debug.println(" expected " + toHex(expected));
505 debug.println(" computed " + toHex(computed));
518 debug.println(" re-computed " + toHex(computed));
574 // for the toHex function
583 static String toHex(byte[] data) { method in class:SignatureFileVerifier

Completed in 54 milliseconds