Searched defs:readByte (Results 1 - 13 of 13) sorted by relevance

/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/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 DRandomAccessFile.java324 public final byte readByte() throws IOException { method in class:RandomAccessFile
735 * @see #readByte()
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());
/libcore/luni/src/main/java/java/sql/
H A DSQLInput.java77 public byte readByte() throws SQLException; method in interface:SQLInput
/libcore/dex/src/main/java/com/android/dex/
H A DEncodedValueReader.java78 int argAndType = in.readByte() & 0xff;
91 * readByte();
110 * readByte();
134 public byte readByte() { method in class:EncodedValueReader
224 readByte();
H A DDex.java540 public byte readByte() { method in class:Dex.Section
768 byte visibility = readByte();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
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 1311 milliseconds