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

/libcore/luni/src/main/java/java/lang/reflect/
H A DArray.java196 public static float getFloat(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException { method in class:Array
/libcore/libart/src/main/java/java/lang/reflect/
H A DField.java407 public native float getFloat(Object object) throws IllegalAccessException, method in class:Field
/libcore/luni/src/main/java/java/nio/
H A DByteArrayBuffer.java185 @Override public final float getFloat() { method in class:ByteArrayBuffer
189 @Override public final float getFloat(int index) { method in class:ByteArrayBuffer
H A DByteBuffer.java482 public abstract float getFloat(); method in class:ByteBuffer
498 public abstract float getFloat(int index); method in class:ByteBuffer
H A DDirectByteBuffer.java191 @Override public final float getFloat() { method in class:DirectByteBuffer
201 @Override public final float getFloat(int index) { method in class:DirectByteBuffer
/libcore/luni/src/main/java/java/util/prefs/
H A DPreferences.java358 public abstract float getFloat(String key, float deflt); method in class:Preferences
H A DAbstractPreferences.java468 public float getFloat(String key, float deflt) { method in class:AbstractPreferences
/libcore/libdvm/src/main/java/java/lang/reflect/
H A DField.java410 public float getFloat(Object object) throws IllegalAccessException, IllegalArgumentException { method in class:Field
/libcore/luni/src/main/java/java/sql/
H A DCallableStatement.java382 public float getFloat(int parameterIndex) throws SQLException; method in interface:CallableStatement
395 public float getFloat(String parameterName) throws SQLException; method in interface:CallableStatement
H A DResultSet.java55 * getFloat}. The columns are retrieved either by their index number (starting
664 public float getFloat(int columnIndex) throws SQLException; method in interface:ResultSet
677 public float getFloat(String columnName) throws SQLException; method in interface:ResultSet
/libcore/luni/src/test/java/libcore/java/util/prefs/
H A DOldPreferencesTest.java72 p.getFloat(null, 0.1f);
244 pref.getFloat(null, 0f);
250 assertEquals(1f, pref.getFloat("testGetFloatKey", 0f), 0);
251 assertEquals(0f, pref.getFloat("testGetFloatKey2", 0f), 0);
501 assertEquals(3f, pref.getFloat("testPutFloatKey", 0), 0);
999 public float getFloat(String key, float deflt) { method in class:OldPreferencesTest.MockPreferences

Completed in 178 milliseconds