Searched refs:readByte (Results 1 - 25 of 40) sorted by relevance

12

/libcore/luni/src/main/java/libcore/io/
H A DBufferIterator.java55 public abstract byte readByte(); method in class:BufferIterator
H A DNioBufferIterator.java74 public byte readByte() { method in class:NioBufferIterator
/libcore/ojluni/src/main/java/java/io/
H A DDataInput.java290 byte readByte() throws IOException; method in interface:DataInput
H A DObjectInputStream.java919 public byte readByte() throws IOException { method in class:ObjectInputStream
920 return bin.readByte();
1323 bin.readByte();
1441 if (bin.readByte() != TC_NULL) {
1453 if (bin.readByte() != TC_REFERENCE) {
1484 if (bin.readByte() != TC_CLASS) {
1544 if (bin.readByte() != TC_PROXYCLASSDESC) {
1595 if (bin.readByte() != TC_CLASSDESC) {
1639 byte tc = bin.readByte();
1663 if (bin.readByte() !
2780 public byte readByte() throws IOException { method in class:ObjectInputStream.BlockDataInputStream
[all...]
/libcore/ojluni/src/main/java/java/time/zone/
H A DSer.java182 type = in.readByte();
187 byte type = in.readByte();
238 int offsetByte = in.readByte();
270 int hiByte = in.readByte() & 255;
274 int midByte = in.readByte() & 255;
275 int loByte = in.readByte() & 255;
/libcore/ojluni/src/test/java/time/tck/java/time/
H A DAbstractTCKTest.java127 assertEquals(dis.readByte(), ObjectStreamConstants.TC_OBJECT);
128 assertEquals(dis.readByte(), ObjectStreamConstants.TC_CLASSDESC);
131 assertEquals(dis.readByte(), ObjectStreamConstants.SC_EXTERNALIZABLE | ObjectStreamConstants.SC_BLOCK_DATA);
133 assertEquals(dis.readByte(), ObjectStreamConstants.TC_ENDBLOCKDATA); // end of classdesc
134 assertEquals(dis.readByte(), ObjectStreamConstants.TC_NULL); // no superclasses
136 assertEquals(dis.readByte(), ObjectStreamConstants.TC_BLOCKDATA);
139 assertEquals(dis.readByte(), ObjectStreamConstants.TC_BLOCKDATALONG);
157 dis.readByte(); // ignore
162 assertEquals(dis.readByte(), ObjectStreamConstants.TC_ENDBLOCKDATA); // end of blockdata
/libcore/luni/src/test/java/libcore/java/io/
H A DOldObjectInputOutputStreamTest.java66 (byte) 127, is.readByte());
69 is.readByte();
77 is.readByte();
H A DOldAndroidDataInputStreamTest.java90 assertEquals('a', g.readByte());
92 assertEquals('D', g.readByte());
H A DOldAndroidPipedStreamTest.java55 byte readByte;
64 readByte = (byte) readInt;
65 assertEquals(readByte, (byte) fib.next());
H A DOldDataInputOutputStreamTest.java83 (byte) 127, dis.readByte());
86 dis.readByte();
94 dis.readByte();
H A DOldDataInputStreamTest.java170 dis.readByte();
200 dis.readByte();
H A DOldRandomAccessFileTest.java417 * java.io.RandomAccessFile#readByte()
430 Byte.MIN_VALUE, raf.readByte());
432 11, raf.readByte());
434 Byte.MAX_VALUE, raf.readByte());
436 127, raf.readByte());
438 -128, raf.readByte());
441 raf.readByte();
455 raf.readByte();
/libcore/ojluni/src/main/java/java/time/chrono/
H A DSer.java223 type = in.readByte();
228 byte type = in.readByte();
H A DMinguoDate.java508 int month = in.readByte();
509 int dayOfMonth = in.readByte();
H A DThaiBuddhistDate.java508 int month = in.readByte();
509 int dayOfMonth = in.readByte();
H A DHijrahDate.java687 int month = in.readByte();
688 int dayOfMonth = in.readByte();
/libcore/ojluni/src/main/java/java/sql/
H A DSQLInput.java99 byte readByte() throws SQLException; method in interface:SQLInput
/libcore/ojluni/src/main/java/java/time/
H A DSer.java245 type = in.readByte();
250 byte type = in.readByte();
H A DMonthDay.java781 byte month = in.readByte();
782 byte day = in.readByte();
H A DLocalTime.java1665 int hour = in.readByte();
1672 minute = in.readByte();
1676 second = in.readByte();
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DBinaryHprof.java46 byte b = in.readByte();
/libcore/ojluni/src/main/java/java/util/logging/
H A DLogRecord.java498 byte major = in.readByte();
499 byte minor = in.readByte();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DDataOutputStreamTest.java115 byte c = dis.readByte();
H A DDataInputStreamTest.java90 * java.io.DataInputStream#readByte()
96 assertTrue("Incorrect byte read", dis.readByte() == (byte) 127);
471 public byte readByte() throws IOException { method in class:DataInputStreamTest.TestDataInputStream
/libcore/luni/src/test/java/libcore/io/
H A DMemoryMappedFileTest.java104 iterator.readByte();
631 iterator.readByte();
641 assertEquals(expectedValue, iterator.readByte());

Completed in 408 milliseconds

12