Searched defs:putFloat (Results 1 - 11 of 11) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DBits.java105 static void putFloat(byte[] b, int off, float val) { method in class:Bits
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DNativeObject.java324 final void putFloat(int offset, float value) { method in class:NativeObject
325 unsafe.putFloat(offset + address, value);
/libcore/ojluni/src/main/java/java/nio/
H A DHeapByteBuffer.java461 public ByteBuffer putFloat(float x) { method in class:HeapByteBuffer
465 Bits.putFloat(this, ix(nextPutIndex(4)), x, bigEndian);
470 public ByteBuffer putFloat(int i, float x) { method in class:HeapByteBuffer
474 Bits.putFloat(this, ix(checkIndex(i, 4)), x, bigEndian);
480 Bits.putFloat(this, ix(i), x, bigEndian);
H A DByteBuffer.java129 * void {@link #putFloat(float) putFloat(float f)}
130 * void {@link #putFloat(int, float) putFloat(int index, float f)}</pre></blockquote>
1342 public abstract ByteBuffer putFloat(float value); method in class:ByteBuffer
1381 public abstract ByteBuffer putFloat(int index, float value); method in class:ByteBuffer
H A DDirectByteBuffer.java775 private ByteBuffer putFloat(long a, float x) { method in class:DirectByteBuffer
782 public final ByteBuffer putFloat(float x) { method in class:DirectByteBuffer
789 putFloat(ix(nextPutIndex(SizeOf.FLOAT)), x);
794 public final ByteBuffer putFloat(int i, float x) { method in class:DirectByteBuffer
801 putFloat(ix(checkIndex(i, SizeOf.FLOAT)), x);
810 putFloat(ix(i), x);
H A DBits.java520 static void putFloat(ByteBuffer bb, int bi, float x, boolean bigEndian) { method in class:Bits
527 static void putFloat(long a, float x, boolean bigEndian) { method in class:Bits
/libcore/ojluni/src/main/java/java/util/prefs/
H A DPreferences.java687 public abstract void putFloat(String key, float value); method in class:Preferences
696 * This method is intended for use in conjunction with {@link #putFloat}.
715 * @see #putFloat(String,float)
H A DAbstractPreferences.java512 * Implements the <tt>putFloat</tt> method as per the specification in
513 * {@link Preferences#putFloat(String,float)}.
527 public void putFloat(String key, float value) { method in class:AbstractPreferences
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
H A DPreferencesTest.java366 public void putFloat(String key, float value) { method in class:PreferencesTest.MockPreferences
/libcore/ojluni/src/main/java/sun/misc/
H A DUnsafe.java333 public native void putFloat(Object obj, long offset, float newValue); method in class:Unsafe
433 public native void putFloat(long address, float x); method in class:Unsafe
/libcore/luni/src/test/java/libcore/java/util/prefs/
H A DOldPreferencesTest.java100 p.putFloat(null, 1f);
180 pref.putFloat("floatKey", 1.0f);
503 pref.putFloat(null, 3f);
507 pref.putFloat(longKey, 3f);
509 pref.putFloat(longKey + "a", 3f);
513 pref.putFloat("testPutFloatKey", 3f);
780 pref.putFloat("float_key", Float.MIN_VALUE);
1074 public void putFloat(String key, float value) { method in class:OldPreferencesTest.MockPreferences

Completed in 201 milliseconds