Searched refs:putDouble (Results 1 - 20 of 20) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/prefs/
H A DOldAbstractPreferencesTest.java129 pref.putDouble("DoubleValue", new Double(9.10938188e-31));
157 pref.putDouble(keyArray[1], new Double(9.10938188e-31));
253 pref.putDouble("DoubleValue", new Double(9.10938188e-31));
319 pref.putDouble("DoubleValue", new Double(9.10938188e-31));
385 pref.putDouble("DoubleValue", new Double(9.10938188e-31));
449 pref.putDouble("DoubleValue", new Double(9.10938188e-31));
477 pref.putDouble("DoubleValue", new Double(9.10938188e-31));
483 pref.putDouble(null, new Double(0.1));
497 pref.putDouble(new String(sb), new Double(0.1));
506 pref.putDouble("DoubleValu
[all...]
H A DOldPreferencesTest.java99 p.putDouble(null, 1);
247 pref.putDouble("testGetDoubleKey3", 1);
485 pref.putDouble(null, 3);
489 pref.putDouble(longKey, 3);
491 pref.putDouble(longKey + "a", 3);
495 pref.putDouble("testPutDoubleKey", 3);
793 pref.putDouble("double_key", Double.MAX_VALUE);
1070 public void putDouble(String key, double value) { method in class:OldPreferencesTest.MockPreferences
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DNativeObject.java351 final void putDouble(int offset, double value) { method in class:NativeObject
352 unsafe.putDouble(offset + address, value);
/libcore/ojluni/src/main/java/java/nio/
H A DHeapByteBuffer.java522 public ByteBuffer putDouble(double x) { method in class:HeapByteBuffer
526 Bits.putDouble(this, ix(nextPutIndex(8)), x, bigEndian);
531 public ByteBuffer putDouble(int i, double x) { method in class:HeapByteBuffer
535 Bits.putDouble(this, ix(checkIndex(i, 8)), x, bigEndian);
541 Bits.putDouble(this, ix(i), x, bigEndian);
H A DByteBuffer.java1644 public abstract ByteBuffer putDouble(double value); method in class:ByteBuffer
1695 public abstract ByteBuffer putDouble(int index, double value); method in class:ByteBuffer
H A DDirectByteBuffer.java892 private ByteBuffer putDouble(long a, double x) { method in class:DirectByteBuffer
899 public final ByteBuffer putDouble(double x) { method in class:DirectByteBuffer
906 putDouble(ix(nextPutIndex(SizeOf.DOUBLE)), x);
911 public final ByteBuffer putDouble(int i, double x) { method in class:DirectByteBuffer
918 putDouble(ix(checkIndex(i, SizeOf.DOUBLE)), x);
927 putDouble(ix(i), x);
H A DBits.java533 static void putDouble(ByteBuffer bb, int bi, double x, boolean bigEndian) { method in class:Bits
540 static void putDouble(long a, double x, boolean bigEndian) { method in class:Bits
/libcore/ojluni/src/main/java/java/io/
H A DBits.java120 static void putDouble(byte[] b, int off, double val) { method in class:Bits
H A DObjectOutputStream.java1707 Bits.putDouble(primVals, getFieldOffset(name, Double.TYPE), val);
2067 Bits.putDouble(buf, pos, v);
H A DObjectStreamClass.java2038 Bits.putDouble(buf, off, unsafe.getDouble(obj, key));
2092 unsafe.putDouble(obj, key, Bits.getDouble(buf, off));
/libcore/ojluni/src/main/java/sun/misc/
H A DUnsafe.java337 public native void putDouble(Object obj, long offset, double newValue); method in class:Unsafe
439 public native void putDouble(long address, double x); method in class:Unsafe
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
H A DAbstractPreferencesTest.java336 pref.putDouble("testGetDoubleKey3", 1);
643 pref.putDouble(null, 3);
648 pref.putDouble(LONG_KEY, 3);
650 pref.putDouble(LONG_KEY + "a", 3);
655 pref.putDouble("testPutDoubleKey", 3);
1061 p.putDouble("key", 3);
1175 p.putDouble("key", 3);
1285 p.putDouble("key", 3);
1404 pref.putDouble("key", 3);
1560 p.putDouble(nul
[all...]
H A DPreferencesTest.java361 public void putDouble(String key, double value) { method in class:PreferencesTest.MockPreferences
/libcore/ojluni/src/main/java/java/util/prefs/
H A DPreferences.java736 public abstract void putDouble(String key, double value); method in class:Preferences
745 * This method is intended for use in conjunction with {@link #putDouble}.
764 * @see #putDouble(String,double)
H A DAbstractPreferences.java567 * Implements the <tt>putDouble</tt> method as per the specification in
568 * {@link Preferences#putDouble(String,double)}.
582 public void putDouble(String key, double value) { method in class:AbstractPreferences
/libcore/dalvik/src/main/java/dalvik/system/
H A DEmulatedStackFrame.java455 frameBuf.putDouble(value);
/libcore/luni/src/test/java/libcore/java/nio/
H A DBufferTest.java587 b.putDouble(0);
1074 b.putDouble(0);
1075 b.putDouble(0, 0);
1126 b.putDouble(0);
1131 b.putDouble(0, 0);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
H A DByteBufferTest.java1387 buf.putDouble((double) 1);
1404 buf.putDouble(value);
1412 buf.putDouble(value);
1424 buf.putDouble(0, (double) 1);
1441 buf.putDouble(i, value);
1448 buf.putDouble(-1, value);
1454 buf.putDouble(buf.limit() - nbytes + 1, value);
H A DDoubleBufferTest.java65 buffer.putDouble(dbl);
/libcore/benchmarks/src/benchmarks/regression/
H A DByteBufferBenchmark.java302 src.putDouble(0.0);

Completed in 64 milliseconds