/libcore/luni/src/test/java/libcore/java/util/prefs/ |
D | OldAbstractPreferencesTest.java | 130 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 …]
|
D | OldPreferencesTest.java | 100 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/sun/nio/ch/ |
D | NativeObject.java | 351 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/ |
D | ByteBuffer.annotated.java | 144 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
|
D | DirectByteBuffer.annotated.java | 174 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/src/main/java/java/nio/ |
D | HeapByteBuffer.java | 996 public ByteBuffer putDouble(double x) { in putDouble() method in HeapByteBuffer 1003 Bits.putDouble(this, ix(nextPutIndex(8)), x, bigEndian); in putDouble() 1011 public ByteBuffer putDouble(int i, double x) { in putDouble() method in HeapByteBuffer 1018 Bits.putDouble(this, ix(checkIndex(i, 8)), x, bigEndian); in putDouble() 1028 Bits.putDouble(this, ix(i), x, bigEndian); in putDoubleUnchecked()
|
D | DirectByteBuffer.java | 930 private ByteBuffer putDouble(long a, double x) { in putDouble() method in DirectByteBuffer 937 public final ByteBuffer putDouble(double x) { in putDouble() method in DirectByteBuffer 944 putDouble(ix(nextPutIndex(Double.BYTES)), x); in putDouble() 949 public final ByteBuffer putDouble(int i, double x) { in putDouble() method in DirectByteBuffer 956 putDouble(ix(checkIndex(i, Double.BYTES)), x); in putDouble() 965 putDouble(ix(i), x); in putDoubleUnchecked()
|
D | ByteBuffer.java | 3007 public abstract ByteBuffer putDouble(double value); in putDouble() method in ByteBuffer 3055 public abstract ByteBuffer putDouble(int index, double value); in putDouble() method in ByteBuffer
|
D | Bits.java | 536 static void putDouble(ByteBuffer bb, int bi, double x, boolean bigEndian) { in putDouble() method in Bits 543 static void putDouble(long a, double x, boolean bigEndian) { in putDouble() method in Bits
|
/libcore/ojluni/annotations/hiddenapi/java/nio/ |
D | DirectByteBuffer.java | 406 private java.nio.ByteBuffer putDouble(long a, double x) { in putDouble() method in DirectByteBuffer 410 public final java.nio.ByteBuffer putDouble(double x) { in putDouble() method in DirectByteBuffer 414 public final java.nio.ByteBuffer putDouble(int i, double x) { in putDouble() method in DirectByteBuffer
|
D | ByteBuffer.java | 241 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/ojluni/annotations/flagged_api/java/nio/ |
D | ByteBuffer.annotated.java | 181 public abstract java.nio.ByteBuffer putDouble(double value); in putDouble() method in ByteBuffer 185 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/ |
D | AbstractPreferencesTest.java | 336 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()
|
D | PreferencesTest.java | 361 public void putDouble(String key, double value) { in putDouble() method in PreferencesTest.MockPreferences
|
/libcore/ojluni/src/main/java/sun/misc/ |
D | Unsafe.java | 446 public native void putDouble(Object obj, long offset, double newValue); in putDouble() method in Unsafe 650 public native void putDouble(long address, double x); in putDouble() method in Unsafe
|
/libcore/ojluni/src/main/java/java/io/ |
D | Bits.java | 120 static void putDouble(byte[] b, int off, double val) { in putDouble() method in Bits
|
/libcore/ojluni/annotations/hiddenapi/sun/misc/ |
D | Unsafe.java | 161 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/annotations/sdk/nullability/java/nio/ |
D | ByteBuffer.annotated.java | 171 @libcore.util.NonNull public abstract java.nio.ByteBuffer putDouble(double value); in putDouble() method in ByteBuffer 175 @libcore.util.NonNull public abstract java.nio.ByteBuffer putDouble(int index, double value); in putDouble() method in ByteBuffer
|
/libcore/luni/src/test/java/libcore/sun/misc/ |
D | UnsafeTest.java | 240 unsafe.putDouble(tf, doubleFieldOffset, doubleValue); in test_putDouble_Relative() 298 unsafe.putDouble(buffer, doubleValue1); in test_putDouble_getDouble_Absolute()
|
/libcore/ojluni/src/main/java/java/util/prefs/ |
D | Preferences.java | 826 public abstract void putDouble(String key, double value); in putDouble() method in Preferences
|
/libcore/ojluni/src/test/java/nio/Buffer/ |
D | BasicByte.java | 336 b.putDouble((double)1); in testHet() 337 b.putDouble((double)Double.MIN_VALUE); in testHet() 338 b.putDouble((double)Double.MAX_VALUE); in testHet() 1022 catchReadOnlyBuffer(b, () -> rb.putDouble((double)1)); in test() 1023 catchReadOnlyBuffer(b, () -> rb.putDouble(0, (double)1)); in test()
|
/libcore/ojluni/annotations/mmodule/sun/misc/ |
D | Unsafe.annotated.java | 155 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/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/ |
D | ByteBufferTest.java | 1413 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/luni/src/test/java/libcore/java/nio/ |
D | BufferTest.java | 538 b.putDouble(0); in testRelativePositions() 1046 b.putDouble(0); in testPutMethods() 1047 b.putDouble(0, 0); in testPutMethods() 1098 b.putDouble(0); in testFailForPutMethods() 1103 b.putDouble(0, 0); in testFailForPutMethods()
|
/libcore/ojluni/src/main/java/jdk/internal/misc/ |
D | Unsafe.java | 281 public native void putDouble(Object o, long offset, double x); in putDouble() method in Unsafe 521 public native void putDouble(long address, double x); in putDouble() method in Unsafe
|