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 DHeapBufferIterator.java55 public byte readByte() { method in class:HeapBufferIterator
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/luni/src/main/java/java/io/
H A DDataInput.java71 public abstract byte readByte() throws IOException; method in interface:DataInput
H A DDataInputStream.java74 public final byte readByte() throws IOException { method in class:DataInputStream
H A DObjectInputStream.java505 pushbackTC = input.readByte();
553 byte[] result = new byte[input.readByte() & 0xff];
598 public byte readByte() throws IOException { method in class:ObjectInputStream
599 return primitiveTypes.readByte();
893 char typecode = (char) input.readByte();
1001 element.fieldValue = input.readByte();
1073 byte b = input.readByte();
1710 newClassDesc.setFlags(input.readByte());
H A DRandomAccessFile.java324 public final byte readByte() throws IOException { method in class:RandomAccessFile
735 * @see #readByte()
/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/luni/src/main/java/java/sql/
H A DSQLInput.java77 public byte readByte() throws SQLException; method in interface:SQLInput
/libcore/luni/src/main/java/java/util/logging/
H A DLogRecord.java482 byte major = in.readByte();
483 byte minor = in.readByte();
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DBinaryHprof.java46 byte b = 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

Completed in 274 milliseconds

12