Searched defs:toHex (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/test/java/util/Locale/
H A DThaiGov.java45 String toHex(String str) { method in class:ThaiGov
50 buff.append(toHex(str.charAt(x)));
55 String toHex(char ch) { method in class:ThaiGov
H A DInternationalBAT.java277 System.out.print("0x" + toHex((b & 0x00F0) >> 4)
278 + toHex((b & 0x000F)) + ", ");
283 private static char toHex(int i) { method in class:InternationalBAT
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/util/
H A DMisc.java48 public final static String toHex(int addr) { method in class:Misc
57 public final static String toHex(long addr) { method in class:Misc
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DUtils.java82 return toHex(id);
84 return "(" + clazz.name() + ")" + toHex(id);
91 public static String toHex(long n) { method in class:Utils
/openjdk7/corba/make/tools/src/build/tools/stripproperties/
H A DStripProperties.java221 outBuffer.append(toHex((aChar >> 12) & 0xF));
222 outBuffer.append(toHex((aChar >> 8) & 0xF));
223 outBuffer.append(toHex((aChar >> 4) & 0xF));
224 outBuffer.append(toHex( aChar & 0xF));
272 private static char toHex(int nibble) { method in class:StripProperties
/openjdk7/jdk/make/tools/src/build/tools/compileproperties/
H A DCompileProperties.java78 private static char toHex(int nibble) { method in class:CompileProperties
309 outBuffer.append(toHex((aChar >> 12) & 0xF));
310 outBuffer.append(toHex((aChar >> 8) & 0xF));
311 outBuffer.append(toHex((aChar >> 4) & 0xF));
312 outBuffer.append(toHex( aChar & 0xF));
/openjdk7/jdk/make/tools/src/build/tools/stripproperties/
H A DStripProperties.java221 outBuffer.append(toHex((aChar >> 12) & 0xF));
222 outBuffer.append(toHex((aChar >> 8) & 0xF));
223 outBuffer.append(toHex((aChar >> 4) & 0xF));
224 outBuffer.append(toHex( aChar & 0xF));
272 private static char toHex(int nibble) { method in class:StripProperties
/openjdk7/jdk/src/share/classes/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
/openjdk7/langtools/make/tools/CompileProperties/
H A DCompileProperties.java315 outBuffer.append(toHex((aChar >> 12) & 0xF));
316 outBuffer.append(toHex((aChar >> 8) & 0xF));
317 outBuffer.append(toHex((aChar >> 4) & 0xF));
318 outBuffer.append(toHex( aChar & 0xF));
391 private static char toHex(int nibble) { method in class:CompileProperties
/openjdk7/jdk/src/share/classes/java/util/
H A DProperties.java637 outBuffer.append(toHex((aChar >> 12) & 0xF));
638 outBuffer.append(toHex((aChar >> 8) & 0xF));
639 outBuffer.append(toHex((aChar >> 4) & 0xF));
640 outBuffer.append(toHex( aChar & 0xF));
664 uu[2] = toHex((c >> 12) & 0xf);
665 uu[3] = toHex((c >> 8) & 0xf);
666 uu[4] = toHex((c >> 4) & 0xf);
667 uu[5] = toHex( c & 0xf);
1106 private static char toHex(int nibble) { method in class:Properties
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DEnv.java210 return toHex(id);
214 toHex(id)});
219 static String toHex(long n) { method in class:Env
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DAttributeWriter.java125 println("length = 0x" + toHex(attr.info.length));
130 print(toHex(data[i], 2));
653 String toHex(byte b, int w) { method in class:AttributeWriter
655 return toHex((int) b, w);
657 return toHex(b & 0xff, w);
660 static String toHex(int i) { method in class:AttributeWriter
664 static String toHex(int i, int w) { method in class:AttributeWriter
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DHprofReader.java205 + " at position " + toHex(currPos));
209 + " at byte " + toHex(currPos+5)
324 throw new IOException("Stack frame " + toHex(fid) + " not found");
392 + toHex(posAtEnd - bytesLeft));
631 warn("Name not found at " + toHex(id.longValue()));
632 return "unresolved name " + toHex(id.longValue());
708 warn("Class name not found for " + toHex(id));
709 name = "unknown-name@" + toHex(id);
720 private String toHex(long addr) { method in class:HprofReader
721 return com.sun.tools.hat.internal.util.Misc.toHex(add
[all...]

Completed in 70 milliseconds