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

/libcore/ojluni/src/main/java/java/io/
H A DDataInput.java466 long readLong() throws IOException; method in interface:DataInput
H A DDataInputStream.java399 * See the general contract of the <code>readLong</code>
415 public final long readLong() throws IOException { method in class:DataInputStream
464 * @see java.io.DataInputStream#readLong()
468 return Double.longBitsToDouble(readLong());
H A DRandomAccessFile.java845 public final long readLong() throws IOException { method in class:RandomAccessFile
875 * as if by the <code>readLong</code> method
888 * @see java.io.RandomAccessFile#readLong()
892 return Double.longBitsToDouble(readLong());
H A DObjectInputStream.java982 public long readLong() throws IOException { method in class:ObjectInputStream
983 return bin.readLong();
2845 public long readLong() throws IOException { method in class:ObjectInputStream.BlockDataInputStream
2850 return din.readLong();
3001 v[off++] = din.readLong();
3040 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/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 902 milliseconds