Searched defs:readShort (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DBufferIterator.java61 public abstract short readShort(); method in class:BufferIterator
H A DHeapBufferIterator.java73 public short readShort() { method in class:HeapBufferIterator
H A DNioBufferIterator.java70 public short readShort() { method in class:NioBufferIterator
/libcore/luni/src/main/java/java/io/
H A DDataInput.java191 public abstract short readShort() throws IOException; method in interface:DataInput
H A DDataInputStream.java104 return (char) readShort();
168 public final short readShort() throws IOException { method in class:DataInputStream
182 return ((int) readShort()) & 0xffff;
H A DRandomAccessFile.java346 return (char) readShort();
516 public final short readShort() throws IOException { method in class:RandomAccessFile
554 return ((int) readShort()) & 0xffff;
858 * @see #readShort()
H A DObjectInputStream.java910 short numFields = input.readShort();
1031 element.fieldValue = input.readShort();
1130 short s = input.readShort();
1482 shortArray[i] = input.readShort();
2090 public short readShort() throws IOException { method in class:ObjectInputStream
2091 return primitiveTypes.readShort();
2105 if (input.readShort() == STREAM_MAGIC
2106 && input.readShort() == STREAM_VERSION) {
/libcore/luni/src/main/java/java/sql/
H A DSQLInput.java87 public short readShort() throws SQLException; method in interface:SQLInput

Completed in 126 milliseconds