Searched defs:getFloat (Results 1 - 16 of 16) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DBits.java60 static float getFloat(byte[] b, int off) { method in class:Bits
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DNativeObject.java310 final float getFloat(int offset) { method in class:NativeObject
311 return unsafe.getFloat(offset + address);
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DArray.java395 // Android-changed: Non-native implementation of getFloat(Object, int)
396 public static float getFloat(Object array, int index) method in class:Array
H A DField.java541 public native float getFloat(Object obj) method in class:Field
/libcore/ojluni/src/main/java/java/nio/
H A DHeapByteBuffer.java441 public float getFloat() { method in class:HeapByteBuffer
442 return Bits.getFloat(this, ix(nextGetIndex(4)), bigEndian);
446 public float getFloat(int i) { method in class:HeapByteBuffer
447 return Bits.getFloat(this, ix(checkIndex(i, 4)), bigEndian);
452 return Bits.getFloat(this, ix(i), bigEndian);
H A DByteBuffer.java132 * float {@link #getFloat()}
133 * float {@link #getFloat(int) getFloat(int index)}
1507 public abstract float getFloat(); method in class:ByteBuffer
1547 public abstract float getFloat(int index); method in class:ByteBuffer
H A DDirectByteBuffer.java750 private float getFloat(long a) { method in class:DirectByteBuffer
756 public final float getFloat() { method in class:DirectByteBuffer
760 return getFloat(ix(nextGetIndex(SizeOf.FLOAT)));
764 public final float getFloat(int i) { method in class:DirectByteBuffer
768 return getFloat(ix(checkIndex(i, SizeOf.FLOAT)));
776 return getFloat(ix(i));
H A DBits.java452 static float getFloat(ByteBuffer bb, int bi, boolean bigEndian) { method in class:Bits
456 static float getFloat(long a, boolean bigEndian) { method in class:Bits
/libcore/ojluni/src/main/java/java/util/prefs/
H A DPreferences.java676 * conjunction with {@link #getFloat}.
685 * @see #getFloat(String,float)
718 public abstract float getFloat(String key, float def); method in class:Preferences
H A DAbstractPreferences.java532 * Implements the <tt>getFloat</tt> method as per the specification in
533 * {@link Preferences#getFloat(String,float)}.
553 public float getFloat(String key, float def) { method in class:AbstractPreferences
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
H A DPreferencesTest.java301 public float getFloat(String key, float deflt) { method in class:PreferencesTest.MockPreferences
/libcore/ojluni/src/main/java/java/sql/
H A DCallableStatement.java265 float getFloat(int parameterIndex) throws SQLException; method in interface:CallableStatement
895 * @see #getFloat
1454 float getFloat(String parameterName) throws SQLException; method in interface:CallableStatement
H A DResultSet.java330 float getFloat(int columnIndex) throws SQLException; method in interface:ResultSet
618 float getFloat(String columnLabel) throws SQLException; method in interface:ResultSet
/libcore/ojluni/src/main/java/sun/misc/
H A DUnsafe.java331 public native float getFloat(Object obj, long offset); method in class:Unsafe
430 public native float getFloat(long address); method in class:Unsafe
/libcore/luni/src/test/java/libcore/java/lang/invoke/
H A DMethodHandleAccessorsTest.java295 static void getFloat(MethodHandle m, ValueHolder v, float value, boolean expectFailure) method in class:MethodHandleAccessorsTest
308 static void getFloat(MethodHandle m, float value, boolean expectFailure) throws Throwable { method in class:MethodHandleAccessorsTest
309 getFloat(m, null, value, expectFailure);
510 getFloat(methodHandle, valueHolder, floatValue,
512 getFloat(methodHandle, floatValue,
/libcore/luni/src/test/java/libcore/java/util/prefs/
H A DOldPreferencesTest.java86 p.getFloat(null, 0.1f);
258 pref.getFloat(null, 0f);
264 assertEquals(1f, pref.getFloat("testGetFloatKey", 0f), 0);
265 assertEquals(0f, pref.getFloat("testGetFloatKey2", 0f), 0);
515 assertEquals(3f, pref.getFloat("testPutFloatKey", 0), 0);
1013 public float getFloat(String key, float deflt) { method in class:OldPreferencesTest.MockPreferences

Completed in 237 milliseconds