Searched refs:setLong (Results 1 - 10 of 10) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/reflect/
H A DArrayTest.java213 try { Array.setLong(booleans, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {}
214 try { Array.setLong(bytes, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {}
215 try { Array.setLong(chars, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {}
216 Array.setLong(doubles, 0, longs[0]);
217 Array.setLong(floats, 0, longs[0]);
218 try { Array.setLong(ints, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {}
219 Array.setLong(longs, 0, longs[0]);
220 try { Array.setLong(shorts, 0, longs[0]); fail(); } catch (IllegalArgumentException expected) {}
221 try { Array.setLong(null, 0, longs[0]); fail(); } catch (NullPointerException expected) {}
/libcore/luni/src/test/java/tests/api/java/lang/reflect/
H A DArrayTest.java897 * java.lang.reflect.Array#setLong(java.lang.Object, int, long)
901 // java.lang.reflect.Array.setLong(java.lang.Object, int, long)
905 Array.setLong(x, 0, 1);
911 Array.setLong(new Object(), 0, 9);
921 Array.setLong(x, 4, 9);
932 Array.setLong(null, 0, 0);
H A DFieldTest.java311 f.setLong(o, ((Long) value).longValue());
367 * java.lang.reflect.Field#setLong(java.lang.Object, long)
1618 * java.lang.reflect.Field#setLong(java.lang.Object, long)
1622 // java.lang.reflect.Field.setLong(java.lang.Object, long)
1628 f.setLong(x, Long.MIN_VALUE);
1631 fail("Exception during setLong test : " + e.getMessage());
1639 f.setLong(x, Long.MIN_VALUE);
1651 f.setLong(x, Long.MIN_VALUE);
1662 f.setLong(null, Long.MIN_VALUE);
1673 f.setLong(nul
[all...]
/libcore/luni/src/main/java/java/sql/
H A DPreparedStatement.java402 public void setLong(int parameterIndex, long theLong) throws SQLException; method in interface:PreparedStatement
H A DCallableStatement.java1125 public void setLong(String parameterName, long theLong) throws SQLException; method in interface:CallableStatement
/libcore/luni/src/main/java/java/lang/reflect/
H A DArray.java419 setLong(array, index, ((Long) value).longValue());
572 public static void setLong(Object array, int index, long value) throws IllegalArgumentException, ArrayIndexOutOfBoundsException { method in class:Array
H A DField.java811 public void setLong(Object object, long value) throws IllegalAccessException, method in class:Field
/libcore/luni/src/main/java/javax/sql/
H A DRowSet.java1007 public void setLong(int parameterIndex, long theLong) throws SQLException; method in interface:RowSet
1020 public void setLong(String parameterName, long theLong) throws SQLException; method in interface:RowSet
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldPreparedStatementTest.java548 ps.setLong(1, Long.MAX_VALUE);
562 ps.setLong(1, Long.MIN_VALUE);
577 ps.setLong(1, Long.MIN_VALUE);
/libcore/luni/src/main/java/java/io/
H A DObjectInputStream.java1127 field.setLong(obj, j);

Completed in 366 milliseconds