Home
last modified time | relevance | path

Searched refs:putDouble (Results 1 – 25 of 37) 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/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/src/main/java/java/nio/
DHeapByteBuffer.java996 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()
DDirectByteBuffer.java930 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()
DByteBuffer.java3007 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
DBits.java536 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/
DDirectByteBuffer.java406 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
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/ojluni/annotations/flagged_api/java/nio/
DByteBuffer.annotated.java181 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/
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.java446 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/
DBits.java120 static void putDouble(byte[] b, int off, double val) { in putDouble() method in Bits
/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/annotations/sdk/nullability/java/nio/
DByteBuffer.annotated.java171 @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/
DUnsafeTest.java240 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/
DPreferences.java826 public abstract void putDouble(String key, double value); in putDouble() method in Preferences
/libcore/ojluni/src/test/java/nio/Buffer/
DBasicByte.java336 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/
DUnsafe.annotated.java155 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/
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/luni/src/test/java/libcore/java/nio/
DBufferTest.java538 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/
DUnsafe.java281 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

12