/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
D | ArrayTest.java | 177 …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/ |
D | ArrayTest.java | 767 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()
|
D | FieldTest.java | 313 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/ |
D | StressTest.java | 328 ps.setDouble(8, 0.5); 329 ps.setDouble(9, 0.6);
|
D | SelectFunctionalityTest.java | 191 prepStatement.setDouble(7, 1.1); in test_SelectPrepared() 192 prepStatement.setDouble(8, 1.1); in test_SelectPrepared()
|
/libcore/ojluni/src/main/java/javax/sql/ |
D | RowSet.java | 710 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/ |
D | Array.java | 470 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
|
D | Field.java | 814 public native void setDouble(Object object, double value) in setDouble() method in Field
|
/libcore/ojluni/src/main/java/java/sql/ |
D | PreparedStatement.java | 208 void setDouble(int parameterIndex, double x) throws SQLException; in setDouble() method
|
D | CallableStatement.java | 914 void setDouble(String parameterName, double x) throws SQLException; in setDouble() method
|
/libcore/luni/src/test/java/libcore/java/sql/ |
D | OldPreparedStatementTest.java | 655 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()
|