Home
last modified time | relevance | path

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

12

/libcore/ojluni/src/main/java/java/time/zone/
DSer.java182 type = in.readByte(); in readExternal()
187 byte type = in.readByte(); in read()
238 int offsetByte = in.readByte(); in readOffset()
270 int hiByte = in.readByte() & 255; in readEpochSec()
274 int midByte = in.readByte() & 255; in readEpochSec()
275 int loByte = in.readByte() & 255; in readEpochSec()
/libcore/ojluni/src/test/java/time/tck/java/time/
DAbstractTCKTest.java127 assertEquals(dis.readByte(), ObjectStreamConstants.TC_OBJECT); in assertSerializedBySer()
128 assertEquals(dis.readByte(), ObjectStreamConstants.TC_CLASSDESC); in assertSerializedBySer()
131 …assertEquals(dis.readByte(), ObjectStreamConstants.SC_EXTERNALIZABLE | ObjectStreamConstants.SC_BL… in assertSerializedBySer()
133 … assertEquals(dis.readByte(), ObjectStreamConstants.TC_ENDBLOCKDATA); // end of classdesc in assertSerializedBySer()
134 assertEquals(dis.readByte(), ObjectStreamConstants.TC_NULL); // no superclasses in assertSerializedBySer()
136 assertEquals(dis.readByte(), ObjectStreamConstants.TC_BLOCKDATA); in assertSerializedBySer()
139 assertEquals(dis.readByte(), ObjectStreamConstants.TC_BLOCKDATALONG); in assertSerializedBySer()
157 dis.readByte(); // ignore in assertSerializedBySer()
162 … assertEquals(dis.readByte(), ObjectStreamConstants.TC_ENDBLOCKDATA); // end of blockdata in assertSerializedBySer()
/libcore/luni/src/test/java/libcore/java/io/
DOldObjectInputOutputStreamTest.java66 (byte) 127, is.readByte()); in test_read_writeByte()
69 is.readByte(); in test_read_writeByte()
77 is.readByte(); in test_read_writeByte()
DOldDataInputOutputStreamTest.java83 (byte) 127, dis.readByte()); in test_read_writeByte()
86 dis.readByte(); in test_read_writeByte()
94 dis.readByte(); in test_read_writeByte()
DOldAndroidPipedStreamTest.java55 byte readByte; in testA()
64 readByte = (byte) readInt; in testA()
65 assertEquals(readByte, (byte) fib.next()); in testA()
DOldAndroidDataInputStreamTest.java90 assertEquals('a', g.readByte()); in testDataInputStream()
92 assertEquals('D', g.readByte()); in testDataInputStream()
DOldRandomAccessFileTest.java430 Byte.MIN_VALUE, raf.readByte()); in test_read_writeByte()
432 11, raf.readByte()); in test_read_writeByte()
434 Byte.MAX_VALUE, raf.readByte()); in test_read_writeByte()
436 127, raf.readByte()); in test_read_writeByte()
438 -128, raf.readByte()); in test_read_writeByte()
441 raf.readByte(); in test_read_writeByte()
455 raf.readByte(); in test_read_writeByte()
DOldDataInputStreamTest.java170 dis.readByte(); in test_readFully$B()
200 dis.readByte(); in test_readFully$BII()
/libcore/luni/src/main/java/libcore/io/
DBufferIterator.java55 public abstract byte readByte(); in readByte() method in BufferIterator
DNioBufferIterator.java74 public byte readByte() { in readByte() method in NioBufferIterator
/libcore/ojluni/src/main/java/java/time/chrono/
DSer.java223 type = in.readByte(); in readExternal()
228 byte type = in.readByte(); in read()
DMinguoDate.java508 int month = in.readByte(); in readExternal()
509 int dayOfMonth = in.readByte(); in readExternal()
DThaiBuddhistDate.java508 int month = in.readByte(); in readExternal()
509 int dayOfMonth = in.readByte(); in readExternal()
DHijrahDate.java687 int month = in.readByte(); in readExternal()
688 int dayOfMonth = in.readByte(); in readExternal()
DJapaneseEra.java388 byte eraValue = in.readByte(); in readExternal()
/libcore/ojluni/src/main/java/java/io/
DDataInput.java290 byte readByte() throws IOException; in readByte() method
DObjectInputStream.java919 public byte readByte() throws IOException { in readByte() method in ObjectInputStream
920 return bin.readByte(); in readByte()
1323 bin.readByte(); in readObject0()
1441 if (bin.readByte() != TC_NULL) { in readNull()
1453 if (bin.readByte() != TC_REFERENCE) { in readHandle()
1484 if (bin.readByte() != TC_CLASS) { in readClass()
1544 if (bin.readByte() != TC_PROXYCLASSDESC) { in readProxyDesc()
1595 if (bin.readByte() != TC_CLASSDESC) { in readNonProxyDesc()
1639 byte tc = bin.readByte(); in readString()
1663 if (bin.readByte() != TC_ARRAY) { in readArray()
[all …]
/libcore/ojluni/src/main/java/java/time/
DSer.java245 type = in.readByte(); in readExternal()
250 byte type = in.readByte(); in read()
DMonthDay.java781 byte month = in.readByte(); in readExternal()
782 byte day = in.readByte(); in readExternal()
/libcore/ojluni/src/main/java/java/sql/
DSQLInput.java99 byte readByte() throws SQLException; in readByte() method
/libcore/ojluni/src/main/java/java/util/logging/
DLogRecord.java498 byte major = in.readByte(); in readObject()
499 byte minor = in.readByte(); in readObject()
/libcore/dalvik/src/main/java/dalvik/system/profiler/
DBinaryHprof.java46 byte b = in.readByte(); in readMagic()
/libcore/luni/src/test/java/libcore/io/
DMemoryMappedFileTest.java104 iterator.readByte(); in testReadAfterCloseFails()
631 iterator.readByte(); in assertReadByteFails()
641 assertEquals(expectedValue, iterator.readByte()); in assertReadByteSucceeds()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DDataOutputStreamTest.java115 byte c = dis.readByte(); in test_writeByteI()
DDataInputStreamTest.java96 assertTrue("Incorrect byte read", dis.readByte() == (byte) 127); in test_readByte()
471 public byte readByte() throws IOException { in readByte() method in DataInputStreamTest.TestDataInputStream

12