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

/dalvik/libcore/nio/src/main/java/java/nio/
H A DHeapByteBuffer.java100 public final float getFloat() { method in class:HeapByteBuffer
104 public final float getFloat(int index) { method in class:HeapByteBuffer
H A DDirectByteBuffer.java137 public final float getFloat() { method in class:DirectByteBuffer
142 float result = getBaseAddress().getFloat(offset + position, order);
147 public final float getFloat(int index) { method in class:DirectByteBuffer
151 return getBaseAddress().getFloat(offset + index, order);
H A DByteBuffer.java586 public abstract float getFloat(); method in class:ByteBuffer
604 public abstract float getFloat(int index); method in class:ByteBuffer
H A DMappedByteBufferAdapter.java158 public float getFloat() { method in class:MappedByteBufferAdapter
161 float result = this.wrapped.getFloat();
166 public float getFloat(int index) { method in class:MappedByteBufferAdapter
169 return this.wrapped.getFloat(index);
/dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
H A DArray.java233 return getFloat(array, index);
259 public static float getFloat(Object array, int index) method in class:Array
H A DField.java397 public float getFloat(Object object) throws IllegalAccessException, IllegalArgumentException { method in class:Field
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
H A DIMemorySystem.java382 public float getFloat(int address); method in interface:IMemorySystem
384 public float getFloat(int address, Endianness endianness); method in interface:IMemorySystem
H A DOSMemory.java487 public native float getFloat(int address); method in class:OSMemory
489 public float getFloat(int address, Endianness endianness) { method in class:OSMemory
491 return getFloat(address);
H A DPlatformAddress.java223 public final float getFloat(int offset, Endianness order) { method in class:PlatformAddress
225 return osMemory.getFloat(osaddr + offset, order);
228 public final float getFloat(int offset) { method in class:PlatformAddress
230 return osMemory.getFloat(osaddr + offset);
/dalvik/libcore/prefs/src/main/java/java/util/prefs/
H A DPreferences.java484 public abstract float getFloat (String key, float deflt); method in class:Preferences
H A DAbstractPreferences.java506 public float getFloat(String key, float deflt) { method in class:AbstractPreferences
/dalvik/libcore/sql/src/main/java/java/sql/
H A DCallableStatement.java410 public float getFloat(int parameterIndex) throws SQLException; method in interface:CallableStatement
424 public float getFloat(String parameterName) throws SQLException; method in interface:CallableStatement
H A DResultSet.java57 * getFloat}. The columns are retrieved either by their index number (starting
738 public float getFloat(int columnIndex) throws SQLException; method in interface:ResultSet
752 public float getFloat(String columnName) throws SQLException; method in interface:ResultSet
/dalvik/libcore/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
H A DPreferencesTest.java472 method = "getFloat",
648 p.getFloat(null, 0.1f);
911 * @test java.util.prefs.Preferences#getFloat(String key, float def)
917 method = "getFloat",
923 pref.getFloat(null, 0f);
929 assertEquals(1f, pref.getFloat("testGetFloatKey", 0f), 0); //$NON-NLS-1$
930 assertEquals(0f, pref.getFloat("testGetFloatKey2", 0f), 0);
1337 assertEquals(3f, pref.getFloat("testPutFloatKey", 0), 0);
1880 public float getFloat(String key, float deflt) { method in class:PreferencesTest.MockPreferences
/dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
H A DJDBCResultSet.java336 public float getFloat(int columnIndex) throws SQLException { method in class:JDBCResultSet
358 public float getFloat(String columnName) throws SQLException { method in class:JDBCResultSet
360 return getFloat(col);
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DImpl_RowSet.java394 public float getFloat(int columnIndex) throws SQLException { method in class:Impl_RowSet
398 public float getFloat(String columnName) throws SQLException { method in class:Impl_RowSet

Completed in 183 milliseconds