/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 | 495 setLong(array, index, ((Long) value).longValue()); in set() 690 public static void setLong(Object array, int index, long l) in setLong() method in Array
|
D | Field.java | 828 public native void setLong(Object obj, long l) in setLong() method in Field
|
/libcore/luni/src/test/java/libcore/java/lang/invoke/ |
D | MethodHandleAccessorsTest.java | 236 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/ |
D | PreparedStatement.java | 182 void setLong(int parameterIndex, long x) throws SQLException; in setLong() method
|
D | CallableStatement.java | 882 void setLong(String parameterName, long x) throws SQLException; in setLong() method
|
/libcore/ojluni/annotations/hiddenapi/java/lang/reflect/ |
D | Field.java | 136 public native void setLong(java.lang.Object obj, long l) in setLong() method in Field
|
/libcore/ojluni/annotations/sdk/nullability/java/lang/reflect/ |
D | Array.annotated.java | 72 public static void setLong(@libcore.util.NonNull java.lang.Object array, int index, long l) throws … in setLong() method in Array
|
D | Field.annotated.java | 88 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/ |
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()
|