Searched refs:ReadByte (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/test/java/nio/channels/Channels/
H A DReadByte.java35 public class ReadByte { class
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DASCII_UCodeESC_CharStream.java195 private final byte ReadByte() throws java.io.IOException method in class:ASCII_UCodeESC_CharStream
291 if (((buffer[bufpos] = c = (char)((char)0xff & ReadByte())) == '\\'))
304 if ((buffer[bufpos] = c = (char)((char)0xff & ReadByte())) != '\\')
335 while ((c = (char)((char)0xff & ReadByte())) == 'u')
339 hexval((char)((char)0xff & ReadByte())) << 8 |
340 hexval((char)((char)0xff & ReadByte())) << 4 |
341 hexval((char)((char)0xff & ReadByte())));
/openjdk7/jdk/test/javax/sound/midi/Gervill/RiffReaderWriter/
H A DReadByte.java36 public class ReadByte { class
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DJavaCharStream.java213 protected char ReadByte() throws java.io.IOException method in class:JavaCharStream
319 if ((buffer[bufpos] = c = ReadByte()) == '\\')
332 if ((buffer[bufpos] = c = ReadByte()) != '\\')
364 while ((c = ReadByte()) == 'u')
368 hexval(ReadByte()) << 8 |
369 hexval(ReadByte()) << 4 |
370 hexval(ReadByte()));
/openjdk7/jdk/test/javax/sound/midi/Gervill/ModelByteBuffer/RandomFileInputStream/
H A DReadByte.java38 public class ReadByte { class

Completed in 52 milliseconds