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

123

/external/guava/guava/src/com/google/common/io/
H A DByteArrayDataInput.java60 @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.java310 @Override public double readDouble() { method in class:ByteStreams.ByteArrayDataInputStream
312 return input.readDouble();
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
H A DAbstractStepInterpolator.java491 globalPreviousTime = in.readDouble();
492 globalCurrentTime = in.readDouble();
493 softPreviousTime = in.readDouble();
494 softCurrentTime = in.readDouble();
495 h = in.readDouble();
504 currentState[i] = in.readDouble();
515 return in.readDouble();
H A DNordsieckStepInterpolator.java260 scalingH = in.readDouble();
261 referenceTime = in.readDouble();
268 scaled[j] = in.readDouble();
H A DDummyStepInterpolator.java141 currentDerivative[i] = in.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/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DInterceptFieldCallback.java39 double readDouble(Object obj, String name, double oldValue); method in interface:InterceptFieldCallback
H A DAbstractInterceptFieldCallback.java39 public double readDouble(Object obj, String name, double oldValue) { return oldValue; } method in class:AbstractInterceptFieldCallback
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
H A DDataInputCompressor.java55 public double readDouble() throws IOException { method in class:DataInputCompressor
56 return dataInput.readDouble();
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
H A DRungeKuttaStepInterpolator.java168 yDotK[k][i] = in.readDouble();
H A DDormandPrince853StepInterpolator.java470 yDotKLast[0][i] = in.readDouble();
471 yDotKLast[1][i] = in.readDouble();
472 yDotKLast[2][i] = in.readDouble();
H A DGraggBulirschStoerStepInterpolator.java392 polynoms[k][l] = in.readDouble();
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDouble.java252 set(s.readDouble());
H A DAtomicDoubleArray.java265 set(i, s.readDouble());
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DDataInputCompressor.java54 public double readDouble() throws IOException { method in class:DataInputCompressor
55 return dataInput.readDouble();
/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/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowParcel.java173 public double readDouble() { method in class:ShadowParcel
323 val[i] = readDouble();
335 val[i] = readDouble();
716 return readDouble();
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DMatrixUtils.java824 data[i] = ois.readDouble();
932 dataI[j] = ois.readDouble();
/external/deqp/framework/referencerenderer/
H A DrrVertexAttrib.cpp137 inline void readDouble (tcu::Vec4& dst, const int size, const void* ptr) function in namespace:rr::__anon3937
284 case VERTEXATTRIBTYPE_DOUBLE: readDouble (dst, size, ptr); break;
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DCodedInputByteBufferNano.java148 public double readDouble() throws IOException { method in class:CodedInputByteBufferNano
/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/micro/
H A DCodedInputStreamMicro.java156 public double readDouble() throws IOException { method in class:CodedInputStreamMicro

Completed in 928 milliseconds

123