Searched refs:setFloat (Results 1 - 15 of 15) sorted by relevance

/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
H A DIMemorySystem.java400 public void setFloat(int address, float value); method in interface:IMemorySystem
402 public void setFloat(int address, float value, Endianness endianness); method in interface:IMemorySystem
H A DPlatformAddress.java213 public final void setFloat(int offset, float value, Endianness order) { method in class:PlatformAddress
215 osMemory.setFloat(osaddr + offset, value, order);
218 public final void setFloat(int offset, float value) { method in class:PlatformAddress
220 osMemory.setFloat(osaddr + offset, value);
H A DOSMemory.java511 public native void setFloat(int address, float value); method in class:OSMemory
513 public void setFloat(int address, float value, Endianness endianness) { method in class:OSMemory
515 setFloat(address, value);
/dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
H A DArray.java566 setFloat(array, index, ((Float) value).floatValue());
721 public static void setFloat(Object array, int index, float value) method in class:Array
786 setFloat(array, index, value);
H A DField.java747 public void setFloat(Object object, float value) throws IllegalAccessException, method in class:Field
/dalvik/libcore/sql/src/test/java/tests/java/sql/
H A DStressTest.java356 ps.setFloat(4, 0.1f);
357 ps.setFloat(5, 0.2f);
359 ps.setFloat(7, 0.4f);
/dalvik/libcore/sql/src/main/java/java/sql/
H A DPreparedStatement.java404 public void setFloat(int parameterIndex, float theFloat) method in interface:PreparedStatement
H A DCallableStatement.java1179 public void setFloat(String parameterName, float theFloat) method in interface:CallableStatement
/dalvik/libcore/nio/src/main/java/java/nio/
H A DReadWriteDirectByteBuffer.java242 getBaseAddress().setFloat(offset + position, value, order);
251 getBaseAddress().setFloat(offset + index, value, order);
/dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
H A DArrayTest.java913 * @tests java.lang.reflect.Array#setFloat(java.lang.Object, int, float)
918 method = "setFloat",
923 // java.lang.reflect.Array.setFloat(java.lang.Object, int, float)
927 Array.setFloat(x, 0, (float) 1);
933 Array.setFloat(new Object(), 0, (float) 9);
943 Array.setFloat(x, 4, (float) 9);
954 Array.setFloat(null, 0, 0);
H A DFieldTest.java346 f.setFloat(o, ((Float) value).floatValue());
385 * @tests java.lang.reflect.Field#setFloat(java.lang.Object, float)
477 method = "setFloat",
1715 * @tests java.lang.reflect.Field#setFloat(java.lang.Object, float)
1720 method = "setFloat",
1725 // java.lang.reflect.Field.setFloat(java.lang.Object, float)
1731 f.setFloat(x, Float.MIN_VALUE);
1734 fail("Exception during setFloat test : " + e.getMessage());
1743 f.setFloat(x, Float.MIN_VALUE);
1755 f.setFloat(
[all...]
/dalvik/libcore/sql/src/main/java/javax/sql/
H A DRowSet.java573 public void setFloat(int parameterIndex, float theFloat) method in interface:RowSet
/dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
H A DJDBCPreparedStatement.java172 public void setFloat(int parameterIndex, float x) throws SQLException {
518 public void setFloat(String parameterName, float val)
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DImpl_RowSet.java157 public void setFloat(int parameterIndex, float theFloat) throws SQLException { method in class:Impl_RowSet
/dalvik/libcore/sql/src/test/java/tests/sql/
H A DPreparedStatementTest.java742 * @test java.sql.PreparedStatement#setFloat(int parameterIndex, float x)
747 method = "setFloat",
763 ps.setFloat(1, value1);
779 ps.setFloat(1, value2);
796 ps.setFloat(1, Float.MIN_VALUE);

Completed in 399 milliseconds