Home
last modified time | relevance | path

Searched refs:setDouble (Results 1 – 11 of 11) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/reflect/
DArrayTest.java177 …try { Array.setDouble(booleans, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected… in testSetDouble()
178 …try { Array.setDouble(bytes, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} in testSetDouble()
179 …try { Array.setDouble(chars, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} in testSetDouble()
180 Array.setDouble(doubles, 0, doubles[0]); in testSetDouble()
181 …try { Array.setDouble(floats, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) … in testSetDouble()
182 … try { Array.setDouble(ints, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} in testSetDouble()
183 …try { Array.setDouble(longs, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) {} in testSetDouble()
184 …try { Array.setDouble(shorts, 0, doubles[0]); fail(); } catch (IllegalArgumentException expected) … in testSetDouble()
185 try { Array.setDouble(null, 0, doubles[0]); fail(); } catch (NullPointerException expected) {} in testSetDouble()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DArrayTest.java767 Array.setDouble(x, 0, 1); in test_setDoubleLjava_lang_ObjectID()
773 Array.setDouble(new Object(), 0, 9); in test_setDoubleLjava_lang_ObjectID()
783 Array.setDouble(x, 4, 9); in test_setDoubleLjava_lang_ObjectID()
794 Array.setDouble(null, 0, 0); in test_setDoubleLjava_lang_ObjectID()
DFieldTest.java313 f.setDouble(o, ((Double) value).doubleValue()); in setField()
1270 f.setDouble(x, Double.MIN_VALUE); in test_setDoubleLjava_lang_ObjectD()
1282 f.setDouble(x, Double.MIN_VALUE); in test_setDoubleLjava_lang_ObjectD()
1293 f.setDouble(null, Double.MIN_VALUE); in test_setDoubleLjava_lang_ObjectD()
1304 f.setDouble(null, Double.MIN_VALUE); in test_setDoubleLjava_lang_ObjectD()
/libcore/luni/src/test/java/tests/java/sql/
DStressTest.java328 ps.setDouble(8, 0.5);
329 ps.setDouble(9, 0.6);
DSelectFunctionalityTest.java191 prepStatement.setDouble(7, 1.1); in test_SelectPrepared()
192 prepStatement.setDouble(8, 1.1); in test_SelectPrepared()
/libcore/ojluni/src/main/java/javax/sql/
DRowSet.java710 void setDouble(int parameterIndex, double x) throws SQLException; in setDouble() method
726 void setDouble(String parameterName, double x) throws SQLException; in setDouble() method
/libcore/ojluni/src/main/java/java/lang/reflect/
DArray.java470 setDouble(array, index, ((Double) value).doubleValue()); in set()
713 …public static void setDouble(Object array, int index, double value) throws IllegalArgumentExceptio… in setDouble() method in Array
DField.java814 public native void setDouble(Object object, double value) in setDouble() method in Field
/libcore/ojluni/src/main/java/java/sql/
DPreparedStatement.java208 void setDouble(int parameterIndex, double x) throws SQLException; in setDouble() method
DCallableStatement.java914 void setDouble(String parameterName, double x) throws SQLException; in setDouble() method
/libcore/luni/src/test/java/libcore/java/sql/
DOldPreparedStatementTest.java655 ps.setDouble(1, Double.MAX_VALUE); in testSetDouble()
670 ps.setDouble(1, Double.MIN_VALUE); in testSetDouble()
686 ps.setDouble(1, 2.0); in testSetDouble()