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

/libcore/ojluni/src/main/java/java/io/
H A DDataInput.java420 long readLong() throws IOException; method in interface:DataInput
447 * of the {@code readLong}
H A DDataInputStream.java396 * See the general contract of the <code>readLong</code>
412 public final long readLong() throws IOException { method in class:DataInputStream
461 * @see java.io.DataInputStream#readLong()
465 return Double.longBitsToDouble(readLong());
H A DRandomAccessFile.java921 public final long readLong() throws IOException { method in class:RandomAccessFile
951 * as if by the {@code readLong} method
964 * @see java.io.RandomAccessFile#readLong()
968 return Double.longBitsToDouble(readLong());
H A DObjectInputStream.java984 public long readLong() throws IOException { method in class:ObjectInputStream
985 return bin.readLong();
2858 public long readLong() throws IOException { method in class:ObjectInputStream.BlockDataInputStream
2863 return din.readLong();
3015 v[off++] = din.readLong();
3054 return readUTFBody(readLong());
/libcore/ojluni/src/main/java/java/sql/
H A DSQLInput.java34 * (<code>readLong</code>, <code>readBytes</code>, and so on)
135 long readLong() throws SQLException; method in interface:SQLInput
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DDataInputStreamTest.java415 * java.io.DataInputStream#readLong()
421 assertEquals("Incorrect long read", 9875645283333L, dis.readLong());
502 public long readLong() throws IOException { method in class:DataInputStreamTest.TestDataInputStream

Completed in 100 milliseconds