Home
last modified time | relevance | path

Searched refs:setLong (Results 1 – 9 of 9) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/reflect/
DArrayTest.java213 … 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/
DArrayTest.java905 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()
DFieldTest.java298 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/
DRowSet.java656 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/
DArray.java466 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
DField.java760 public native void setLong(Object object, long value) in setLong() method in Field
/libcore/ojluni/src/main/java/java/sql/
DPreparedStatement.java182 void setLong(int parameterIndex, long x) throws SQLException; in setLong() method
DCallableStatement.java880 void setLong(String parameterName, long x) throws SQLException; in setLong() method
/libcore/luni/src/test/java/libcore/java/sql/
DOldPreparedStatementTest.java546 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()