Searched refs:setLong (Results 1 – 9 of 9) sorted by relevance
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
D | ArrayTest.java | 213 … try { Array.setLong(booleans, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} in testSetLong() 214 try { Array.setLong(bytes, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} in testSetLong() 215 try { Array.setLong(chars, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} in testSetLong() 216 Array.setLong(doubles, 0, longs[0]); in testSetLong() 217 Array.setLong(floats, 0, longs[0]); in testSetLong() 218 try { Array.setLong(ints, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} in testSetLong() 219 Array.setLong(longs, 0, longs[0]); in testSetLong() 220 try { Array.setLong(shorts, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {} in testSetLong() 221 try { Array.setLong(null, 0, longs[0]); fail(); } catch (NullPointerException expected) {} in testSetLong()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/ |
D | ArrayTest.java | 905 Array.setLong(x, 0, 1); in test_setLongLjava_lang_ObjectIJ() 911 Array.setLong(new Object(), 0, 9); in test_setLongLjava_lang_ObjectIJ() 921 Array.setLong(x, 4, 9); in test_setLongLjava_lang_ObjectIJ() 932 Array.setLong(null, 0, 0); in test_setLongLjava_lang_ObjectIJ()
|
D | FieldTest.java | 298 f.setLong(o, ((Long) value).longValue()); in setField() 1423 f.setLong(x, Long.MIN_VALUE); in test_setLongLjava_lang_ObjectJ() 1434 f.setLong(x, Long.MIN_VALUE); in test_setLongLjava_lang_ObjectJ() 1445 f.setLong(null, Long.MIN_VALUE); in test_setLongLjava_lang_ObjectJ() 1456 f.setLong(null, Long.MIN_VALUE); in test_setLongLjava_lang_ObjectJ()
|
/libcore/ojluni/src/main/java/javax/sql/ |
D | RowSet.java | 656 void setLong(int parameterIndex, long x) throws SQLException; in setLong() method 672 void setLong(String parameterName, long x) throws SQLException; in setLong() method
|
/libcore/ojluni/src/main/java/java/lang/reflect/ |
D | Array.java | 466 setLong(array, index, ((Long) value).longValue()); in set() 655 …public static void setLong(Object array, int index, long value) throws IllegalArgumentException, A… in setLong() method in Array
|
D | Field.java | 760 public native void setLong(Object object, long value) in setLong() method in Field
|
/libcore/ojluni/src/main/java/java/sql/ |
D | PreparedStatement.java | 182 void setLong(int parameterIndex, long x) throws SQLException; in setLong() method
|
D | CallableStatement.java | 880 void setLong(String parameterName, long x) throws SQLException; in setLong() method
|
/libcore/luni/src/test/java/libcore/java/sql/ |
D | OldPreparedStatementTest.java | 546 ps.setLong(1, Long.MAX_VALUE); in testSetLong() 560 ps.setLong(1, Long.MIN_VALUE); in testSetLong() 575 ps.setLong(1, Long.MIN_VALUE); in testSetLong()
|