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

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DASCII_UCodeESC_CharStream.java47 static final int hexval(char c) throws java.io.IOException { method in class:ASCII_UCodeESC_CharStream
338 buffer[bufpos] = c = (char)(hexval(c) << 12 |
339 hexval((char)((char)0xff & ReadByte())) << 8 |
340 hexval((char)((char)0xff & ReadByte())) << 4 |
341 hexval((char)((char)0xff & ReadByte())));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DJavaCharStream.java61 static final int hexval(char c) throws java.io.IOException { method in class:JavaCharStream
367 buffer[bufpos] = c = (char)(hexval(c) << 12 |
368 hexval(ReadByte()) << 8 |
369 hexval(ReadByte()) << 4 |
370 hexval(ReadByte()));
H A DUCode_UCodeESC_CharStream.java63 static final int hexval(char c) { method in class:UCode_UCodeESC_CharStream
358 int scalarValue = hexval(ReadChar());
364 int n = hexval(c);

Completed in 34 milliseconds