Searched defs:readLong (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DDataInput.java179 public abstract long readLong() throws IOException; method in interface:DataInput
H A DDataInputStream.java87 return Double.longBitsToDouble(readLong());
146 public final long readLong() throws IOException { method in class:DataInputStream
H A DRandomAccessFile.java358 return Double.longBitsToDouble(readLong());
495 public final long readLong() throws IOException { method in class:RandomAccessFile
838 * @see #readLong()
H A DObjectInputStream.java1009 element.fieldValue = input.readLong();
1098 long j = input.readLong();
1397 public long readLong() throws IOException { method in class:ObjectInputStream
1398 return primitiveTypes.readLong();
1465 longArray[i] = input.readLong();
1709 newClassDesc.setSerialVersionUID(input.readLong());
1915 long length = input.readLong();
/libcore/luni/src/main/java/java/sql/
H A DSQLInput.java33 * directly. Reader methods such as {@code readLong} and {@code readBytes}
107 public long readLong() throws SQLException; method in interface:SQLInput
/libcore/dex/src/main/java/com/android/dex/
H A DEncodedValueReader.java158 public long readLong() { method in class:EncodedValueReader
236 readLong();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DDataInputStreamTest.java414 * java.io.DataInputStream#readLong()
420 assertEquals("Incorrect long read", 9875645283333L, dis.readLong());
501 public long readLong() throws IOException { method in class:DataInputStreamTest.TestDataInputStream

Completed in 2125 milliseconds