Home
last modified time | relevance | path

Searched refs:putDouble (Results 1 – 25 of 31) sorted by relevance

12

/libcore/luni/src/test/java/libcore/java/util/prefs/
DOldAbstractPreferencesTest.java130 pref.putDouble("DoubleValue", new Double(9.10938188e-31)); in testGet()
158 pref.putDouble(keyArray[1], new Double(9.10938188e-31)); in testRemove()
254 pref.putDouble("DoubleValue", new Double(9.10938188e-31)); in testGetInt()
320 pref.putDouble("DoubleValue", new Double(9.10938188e-31)); in testGetLong()
386 pref.putDouble("DoubleValue", new Double(9.10938188e-31)); in testGetBoolean()
450 pref.putDouble("DoubleValue", new Double(9.10938188e-31)); in testGetFloat()
478 pref.putDouble("DoubleValue", new Double(9.10938188e-31)); in testPutDouble()
484 pref.putDouble(null, new Double(0.1)); in testPutDouble()
498 pref.putDouble(new String(sb), new Double(0.1)); in testPutDouble()
507 pref.putDouble("DoubleValue", new Double(0.1)); in testPutDouble()
[all …]
DOldPreferencesTest.java100 p.putDouble(null, 1); in testAbstractMethods()
248 pref.putDouble("testGetDoubleKey3", 1); in testGetDouble()
486 pref.putDouble(null, 3); in testPutDouble()
490 pref.putDouble(longKey, 3); in testPutDouble()
492 pref.putDouble(longKey + "a", 3); in testPutDouble()
496 pref.putDouble("testPutDoubleKey", 3); in testPutDouble()
794 pref.putDouble("double_key", Double.MAX_VALUE); in testAddPreferenceChangeListener()
1071 public void putDouble(String key, double value) { in putDouble() method in OldPreferencesTest.MockPreferences
/libcore/ojluni/src/main/java/java/nio/
DHeapByteBuffer.java522 public ByteBuffer putDouble(double x) { in putDouble() method in HeapByteBuffer
526 Bits.putDouble(this, ix(nextPutIndex(8)), x, bigEndian); in putDouble()
531 public ByteBuffer putDouble(int i, double x) { in putDouble() method in HeapByteBuffer
535 Bits.putDouble(this, ix(checkIndex(i, 8)), x, bigEndian); in putDouble()
541 Bits.putDouble(this, ix(i), x, bigEndian); in putDoubleUnchecked()
DDirectByteBuffer.java899 private ByteBuffer putDouble(long a, double x) { in putDouble() method in DirectByteBuffer
906 public final ByteBuffer putDouble(double x) { in putDouble() method in DirectByteBuffer
913 putDouble(ix(nextPutIndex(Double.BYTES)), x); in putDouble()
918 public final ByteBuffer putDouble(int i, double x) { in putDouble() method in DirectByteBuffer
925 putDouble(ix(checkIndex(i, Double.BYTES)), x); in putDouble()
934 putDouble(ix(i), x); in putDoubleUnchecked()
DByteBuffer.java1658 public abstract ByteBuffer putDouble(double value); in putDouble() method in ByteBuffer
1706 public abstract ByteBuffer putDouble(int index, double value); in putDouble() method in ByteBuffer
DBits.java533 static void putDouble(ByteBuffer bb, int bi, double x, boolean bigEndian) { in putDouble() method in Bits
540 static void putDouble(long a, double x, boolean bigEndian) { in putDouble() method in Bits
/libcore/ojluni/src/main/java/sun/nio/ch/
DNativeObject.java351 final void putDouble(int offset, double value) { in putDouble() method in NativeObject
352 unsafe.putDouble(offset + address, value); in putDouble()
/libcore/ojluni/annotations/mmodule/java/nio/
DByteBuffer.annotated.java144 public abstract java.nio.ByteBuffer putDouble(double value); in putDouble() method in ByteBuffer
148 public abstract java.nio.ByteBuffer putDouble(int index, double value); in putDouble() method in ByteBuffer
DDirectByteBuffer.annotated.java174 public final java.nio.ByteBuffer putDouble(double x) { throw new RuntimeException("Stub!"); } in putDouble() method in DirectByteBuffer
177 public final java.nio.ByteBuffer putDouble(int i, double x) { throw new RuntimeException("Stub!"); } in putDouble() method in DirectByteBuffer
/libcore/ojluni/annotations/hiddenapi/java/nio/
DDirectByteBuffer.java399 private java.nio.ByteBuffer putDouble(long a, double x) { in putDouble() method in DirectByteBuffer
403 public final java.nio.ByteBuffer putDouble(double x) { in putDouble() method in DirectByteBuffer
407 public final java.nio.ByteBuffer putDouble(int i, double x) { in putDouble() method in DirectByteBuffer
DByteBuffer.java241 public abstract java.nio.ByteBuffer putDouble(double value); in putDouble() method in ByteBuffer
249 public abstract java.nio.ByteBuffer putDouble(int index, double value); in putDouble() method in ByteBuffer
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
DAbstractPreferencesTest.java336 pref.putDouble("testGetDoubleKey3", 1); in testGetDouble()
643 pref.putDouble(null, 3); in testPutDouble()
648 pref.putDouble(LONG_KEY, 3); in testPutDouble()
650 pref.putDouble(LONG_KEY + "a", 3); in testPutDouble()
655 pref.putDouble("testPutDoubleKey", 3); in testPutDouble()
1061 p.putDouble("key", 3); in testBackingStoreException()
1175 p.putDouble("key", 3); in testRuntimeException()
1285 p.putDouble("key", 3); in testSPIReturnNull()
1404 pref.putDouble("key", 3); in testIllegalStateException()
1560 p.putDouble(null, 3); in testNullAndIllegalStateException()
DPreferencesTest.java361 public void putDouble(String key, double value) { in putDouble() method in PreferencesTest.MockPreferences
/libcore/ojluni/src/main/java/sun/misc/
DUnsafe.java445 public native void putDouble(Object obj, long offset, double newValue); in putDouble() method in Unsafe
649 public native void putDouble(long address, double x); in putDouble() method in Unsafe
/libcore/ojluni/annotations/sdk/nullability/java/nio/
DByteBuffer.annotated.java155 @libcore.util.NonNull public abstract java.nio.ByteBuffer putDouble(double value); in putDouble() method in ByteBuffer
159 @libcore.util.NonNull public abstract java.nio.ByteBuffer putDouble(int index, double value); in putDouble() method in ByteBuffer
/libcore/ojluni/src/main/java/java/io/
DBits.java120 static void putDouble(byte[] b, int off, double val) { in putDouble() method in Bits
DObjectOutputStream.java1707 Bits.putDouble(primVals, getFieldOffset(name, Double.TYPE), val); in put()
2067 Bits.putDouble(buf, pos, v); in writeDouble()
/libcore/ojluni/annotations/hiddenapi/sun/misc/
DUnsafe.java161 public native void putDouble(java.lang.Object obj, long offset, double newValue); in putDouble() method in Unsafe
231 public native void putDouble(long address, double x); in putDouble() method in Unsafe
/libcore/ojluni/src/main/java/java/util/prefs/
DPreferences.java826 public abstract void putDouble(String key, double value); in putDouble() method in Preferences
DAbstractPreferences.java589 public void putDouble(String key, double value) { in putDouble() method in AbstractPreferences
/libcore/luni/src/test/java/libcore/java/nio/
DBufferTest.java530 b.putDouble(0); in testRelativePositions()
1017 b.putDouble(0); in testPutMethods()
1018 b.putDouble(0, 0); in testPutMethods()
1069 b.putDouble(0); in testFailForPutMethods()
1074 b.putDouble(0, 0); in testFailForPutMethods()
/libcore/ojluni/annotations/mmodule/sun/misc/
DUnsafe.annotated.java174 public native void putDouble(java.lang.Object obj, long offset, double newValue); in putDouble() method in Unsafe
260 public native void putDouble(long address, double x); in putDouble() method in Unsafe
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
DByteBufferTest.java1413 buf.putDouble((double) 1); in testPutDouble()
1430 buf.putDouble(value); in testPutDouble()
1438 buf.putDouble(value); in testPutDouble()
1450 buf.putDouble(0, (double) 1); in testPutDoubleint()
1467 buf.putDouble(i, value); in testPutDoubleint()
1474 buf.putDouble(-1, value); in testPutDoubleint()
1480 buf.putDouble(buf.limit() - nbytes + 1, value); in testPutDoubleint()
/libcore/dalvik/src/main/java/dalvik/system/
DEmulatedStackFrame.java464 frameBuf.putDouble(value); in putNextDouble()
/libcore/benchmarks/src/benchmarks/regression/
DByteBufferBenchmark.java302 src.putDouble(0.0); in timeByteBuffer_putDouble()

12