HomeSort by relevance Sort by last modified time
    Searched refs:readDouble (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/guava/src/com/google/common/io/
ByteArrayDataInput.java 44 /*@Override*/ double readDouble();
ByteStreams.java 361 /*@Override*/ public double readDouble() {
363 return input.readDouble();
  /libcore/luni/src/main/java/java/io/
DataInput.java 95 public abstract double readDouble() throws IOException;
DataInputStream.java 107 public final double readDouble() throws IOException {
ObjectInputStream.java 846 public double readDouble() throws IOException {
847 return primitiveTypes.readDouble();
    [all...]
RandomAccessFile.java 361 public final double readDouble() throws IOException {
798 * @see #readDouble()
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_Double_info.java 83 m_value = bytes.readDouble ();
  /external/proguard/src/proguard/classfile/io/
RuntimeDataInput.java 80 public double readDouble()
84 return dataInput.readDouble();
  /libcore/luni/src/test/java/libcore/java/io/
OldObjectInputOutputStreamTest.java 114 2345.76834720202, is.readDouble());
117 is.readDouble();
125 is.readDouble();
OldDataInputOutputStreamTest.java 147 2345.76834720202, dis.readDouble());
150 dis.readDouble();
158 dis.readDouble();
OldAndroidDataInputStreamTest.java 98 assertEquals(1, g.readDouble(), 0);
OldRandomAccessFileTest.java 509 * java.io.RandomAccessFile#readDouble()
519 Double.MAX_VALUE, raf.readDouble());
521 424242.4242, raf.readDouble());
524 raf.readDouble();
538 raf.readDouble();
    [all...]
  /libcore/luni/src/main/java/java/sql/
SQLInput.java 127 public double readDouble() throws SQLException;
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/input/
SwappedDataInputStream.java 92 public double readDouble()
  /cts/tools/dex-tools/src/dex/reader/
DexBuffer.java 172 public double readDouble(int nBytes) {
DexEncodedValueImpl.java 221 return buffer.readDouble(valueArg + 1);
  /frameworks/base/include/binder/
Parcel.h 143 double readDouble() const;
144 status_t readDouble(double *pArg) const;
  /frameworks/base/location/java/android/location/
Location.java 703 l.mLatitude = in.readDouble();
704 l.mLongitude = in.readDouble();
706 l.mAltitude = in.readDouble();
Address.java 512 a.mLatitude = in.readDouble();
516 a.mLongitude = in.readDouble();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
DataOutputStreamTest.java 171 double c = dis.readDouble();
DataInputStreamTest.java 109 * @tests java.io.DataInputStream#readDouble()
116 .readDouble());
478 public double readDouble() throws IOException {
  /frameworks/base/media/java/android/media/
Metadata.java 470 return mParcel.readDouble();
  /frameworks/base/core/java/android/os/
Parcel.java 64 * {@link #readDouble}, {@link #writeFloat}, {@link #readFloat}, {@link #writeInt},
787 val[i] = readDouble();
799 val[i] = readDouble();
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
ParcelTest.java     [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 159 public double readDouble() throws IOException {

Completed in 488 milliseconds

1 2 3