Home
last modified time | relevance | path

Searched refs:setLong (Results 1 – 13 of 13) 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.java495 setLong(array, index, ((Long) value).longValue()); in set()
690 public static void setLong(Object array, int index, long l) in setLong() method in Array
DField.java828 public native void setLong(Object obj, long l) in setLong() method in Field
/libcore/luni/src/test/java/libcore/java/lang/invoke/
DMethodHandleAccessorsTest.java236 static void setLong(MethodHandle m, ValueHolder v, long value, boolean expectFailure) in setLong() method in MethodHandleAccessorsTest
253 static void setLong(MethodHandle m, long value, boolean expectFailure) throws Throwable { in setLong() method in MethodHandleAccessorsTest
254 setLong(m, null, value, expectFailure); in setLong()
496 setLong(methodHandle, valueHolder, longValue, in tryAccessor()
498 setLong(methodHandle, longValue, in tryAccessor()
/libcore/ojluni/src/main/java/java/sql/
DPreparedStatement.java182 void setLong(int parameterIndex, long x) throws SQLException; in setLong() method
DCallableStatement.java882 void setLong(String parameterName, long x) throws SQLException; in setLong() method
/libcore/ojluni/annotations/hiddenapi/java/lang/reflect/
DField.java136 public native void setLong(java.lang.Object obj, long l) in setLong() method in Field
/libcore/ojluni/annotations/sdk/nullability/java/lang/reflect/
DArray.annotated.java72 public static void setLong(@libcore.util.NonNull java.lang.Object array, int index, long l) throws … in setLong() method in Array
DField.annotated.java88 public native void setLong(@libcore.util.Nullable java.lang.Object obj, long l) throws java.lang.Il… in setLong() method in Field
/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()