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

12

/libcore/dex/src/main/java/com/android/dex/util/
H A DByteInput.java29 byte readByte(); method in interface:ByteInput
H A DByteArrayByteInput.java28 @Override public byte readByte() { method in class:ByteArrayByteInput
/libcore/luni/src/main/java/libcore/io/
H A DBufferIterator.java45 public abstract byte readByte(); method in class:BufferIterator
H A DNioBufferIterator.java53 public byte readByte() { method in class:NioBufferIterator
/libcore/dex/src/main/java/com/android/dex/
H A DEncodedValueCodec.java126 result = (result >>> 8) | ((in.readByte() & 0xff) << 24);
142 result = (result >>> 8) | ((in.readByte() & 0xff) << 24);
147 result = (result >>> 8) | ((in.readByte() & 0xff) << 24);
161 result = (result >>> 8) | ((in.readByte() & 0xffL) << 56);
177 result = (result >>> 8) | ((in.readByte() & 0xffL) << 56);
182 result = (result >>> 8) | ((in.readByte() & 0xffL) << 56);
H A DMutf8.java37 char a = (char) (in.readByte() & 0xff);
45 int b = in.readByte() & 0xff;
51 int b = in.readByte() & 0xff;
52 int c = in.readByte() & 0xff;
H A DLeb128.java88 cur = in.readByte() & 0xff;
115 cur = in.readByte() & 0xff;
H A DEncodedValueReader.java78 int argAndType = in.readByte() & 0xff;
91 * readByte();
110 * readByte();
134 public byte readByte() { method in class:EncodedValueReader
224 readByte();
/libcore/ojluni/src/main/java/java/io/
H A DDataInput.java335 byte readByte() throws IOException; method in interface:DataInput
H A DObjectInputStream.java916 public byte readByte() throws IOException { method in class:ObjectInputStream
917 return bin.readByte();
1320 bin.readByte();
1438 if (bin.readByte() != TC_NULL) {
1450 if (bin.readByte() != TC_REFERENCE) {
1481 if (bin.readByte() != TC_CLASS) {
1541 if (bin.readByte() != TC_PROXYCLASSDESC) {
1592 if (bin.readByte() != TC_CLASSDESC) {
1636 byte tc = bin.readByte();
1660 if (bin.readByte() !
2769 public byte readByte() throws IOException { method in class:ObjectInputStream.BlockDataInputStream
[all...]
H A DDataInputStream.java249 * See the general contract of the <code>readByte</code>
264 public final byte readByte() throws IOException { method in class:DataInputStream
H A DRandomAccessFile.java676 public final byte readByte() throws IOException { method in class:RandomAccessFile
/libcore/dex/src/test/java/com/android/dex/
H A DEncodedValueReaderTest.java25 assertEquals((byte) 0x80, readerOf(0, 0x80).readByte());
26 assertEquals((byte) 0xff, readerOf(0, 0xff).readByte());
27 assertEquals((byte) 0x00, readerOf(0, 0x00).readByte());
28 assertEquals((byte) 0x01, readerOf(0, 0x01).readByte());
29 assertEquals((byte) 0x7f, readerOf(0, 0x7f).readByte());
/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/sql/
H A DSQLInput.java99 byte readByte() throws SQLException; method in interface:SQLInput
/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.java495 byte major = in.readByte();
496 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.java89 * java.io.DataInputStream#readByte()
95 assertTrue("Incorrect byte read", dis.readByte() == (byte) 127);
470 public byte readByte() throws IOException { method in class:DataInputStreamTest.TestDataInputStream
/libcore/luni/src/test/java/libcore/util/
H A DZoneInfoTest.java503 public byte readByte() { method in class:ZoneInfoTest.ByteBufferIterator

Completed in 415 milliseconds

12