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

1 2

  /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 177 public final double readDouble() throws IOException {
ObjectInputStream.java     [all...]
RandomAccessFile.java 423 public final double readDouble() throws IOException {
    [all...]
  /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/main/java/java/sql/
SQLInput.java 127 public double readDouble() throws SQLException;
  /packages/apps/Email/src/org/apache/commons/io/input/
SwappedDataInputStream.java 92 public double readDouble()
  /libcore/luni/src/test/java/tests/api/java/io/
ObjectInputOutputStreamTest.java 178 * @tests java.io.ObjectInputStream#readDouble()
193 method = "readDouble",
204 2345.76834720202, is.readDouble());
207 is.readDouble();
215 is.readDouble();
DataInputOutputStreamTest.java 196 * @tests java.io.DataInputStream#readDouble()
209 method = "readDouble",
228 2345.76834720202, dis.readDouble());
231 dis.readDouble();
239 dis.readDouble();
RandomAccessFileTest.java 625 * @tests java.io.RandomAccessFile#readDouble()
638 method = "readDouble",
649 Double.MAX_VALUE, raf.readDouble());
651 424242.4242, raf.readDouble());
654 raf.readDouble();
668 raf.readDouble();
    [all...]
  /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/tests/CoreTests/android/core/
DataInputStreamTest.java 98 assertEquals(1, g.readDouble(), 0);
  /frameworks/base/include/binder/
Parcel.h 129 double readDouble() const;
130 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();
  /frameworks/base/media/java/android/media/
Metadata.java 353 return mParcel.readDouble();
  /frameworks/base/core/java/android/os/
Parcel.java 63 * {@link #readDouble}, {@link #writeFloat}, {@link #readFloat}, {@link #writeInt},
782 val[i] = readDouble();
794 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 {
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedInputStreamMicro.java 156 public double readDouble() throws IOException {
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
RandomAccessFileTest.java 241 * @tests java.io.RandomAccessFile#readDouble()
244 // Test for method double java.io.RandomAccessFile.readDouble()
249 .readDouble(), 0);
715 .readDouble(), 0);
    [all...]

Completed in 1107 milliseconds

1 2