Searched refs:readDouble (Results 1 - 25 of 33) sorted by relevance

12

/external/guava/guava/src/com/google/common/io/
H A DByteArrayDataInput.java44 @Override double readDouble(); method in interface:ByteArrayDataInput
H A DLittleEndianDataInputStream.java161 * {@link DataInputStream#readDouble()}, except using little-endian byte
169 public double readDouble() throws IOException { method in class:LittleEndianDataInputStream
H A DByteStreams.java389 @Override public double readDouble() { method in class:ByteStreams.ByteArrayDataInputStream
391 return input.readDouble();
/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DCONSTANT_Double_info.java83 m_value = bytes.readDouble ();
/external/proguard/src/proguard/classfile/io/
H A DRuntimeDataInput.java80 public double readDouble() method in class:RuntimeDataInput
84 return dataInput.readDouble();
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDouble.java254 set(s.readDouble());
H A DAtomicDoubleArray.java267 set(i, s.readDouble());
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DLittleEndien.java127 public double readDouble() throws IOException { method in class:LittleEndien
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DDataOutputStreamTest.java171 double c = dis.readDouble();
H A DDataInputStreamTest.java109 * @tests java.io.DataInputStream#readDouble()
116 .readDouble());
478 public double readDouble() throws IOException { method in class:DataInputStreamTest.TestDataInputStream
H A DRandomAccessFileTest.java284 * @tests java.io.RandomAccessFile#readDouble()
287 // Test for method double java.io.RandomAccessFile.readDouble()
292 .readDouble(), 0);
758 .readDouble(), 0);
H A DObjectInputStreamTest.java311 * @tests java.io.ObjectInputStream#readDouble()
318 ois.readDouble() == Double.MAX_VALUE);
H A DObjectOutputStreamTest.java839 ois.readDouble() == Double.MAX_VALUE);
/external/guava/guava-tests/test/com/google/common/io/
H A DLittleEndianDataInputStreamTest.java124 assertEquals(0xBEBAFECAEFBEADDEL, Double.doubleToLongBits(in.readDouble()));
H A DLittleEndianDataOutputStreamTest.java80 assertEquals(0xBEBAFECAEFBEADDEL, Double.doubleToLongBits(in.readDouble()));
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DBlenderInputStream.java290 public double readDouble() { method in class:BlenderInputStream
H A DField.java169 value = Double.valueOf(blenderInputStream.readDouble());
173 data[i] = Double.valueOf(blenderInputStream.readDouble());
/external/jmonkeyengine/engine/src/core/com/jme3/export/
H A DInputCapsule.java74 public double readDouble(String name, double defVal) throws IOException; method in interface:InputCapsule
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
H A DProperties.java116 doubleList[i] = bis.readDouble();
399 value = Double.valueOf(ic.readDouble("value", 0.0));
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
H A DByteUtils.java320 public static double readDouble(InputStream inputStream) throws IOException { method in class:ByteUtils
H A DBinaryInputCapsule.java119 value = readDouble(content);
335 public double readDouble(String name, double defVal) throws IOException { method in class:BinaryInputCapsule
857 protected double readDouble(byte[] content) throws IOException { method in class:BinaryInputCapsule
869 value[x] = readDouble(content);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DBuildResults.java417 this.stddev[i] = stream.readDouble();
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DCodedInputStream.java159 public double readDouble() throws IOException { method in class:CodedInputStream
H A DFieldSet.java435 case DOUBLE : return input.readDouble ();
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DCodedInputStreamMicro.java156 public double readDouble() throws IOException { method in class:CodedInputStreamMicro

Completed in 459 milliseconds

12