Home
last modified time | relevance | path

Searched refs:setShort (Results 1 – 11 of 11) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/reflect/
DArrayTest.java225 …try { Array.setShort(booleans, 0, shorts[0]); fail(); } catch (IllegalArgumentException expected) … in testSetShort()
226 … try { Array.setShort(bytes, 0, shorts[0]); fail(); } catch (IllegalArgumentException expected) {} in testSetShort()
227 … try { Array.setShort(chars, 0, shorts[0]); fail(); } catch (IllegalArgumentException expected) {} in testSetShort()
228 Array.setShort(doubles, 0, shorts[0]); in testSetShort()
229 Array.setShort(floats, 0, shorts[0]); in testSetShort()
230 Array.setShort(ints, 0, shorts[0]); in testSetShort()
231 Array.setShort(longs, 0, shorts[0]); in testSetShort()
232 Array.setShort(shorts, 0, shorts[0]); in testSetShort()
233 try { Array.setShort(null, 0, shorts[0]); fail(); } catch (NullPointerException expected) {} in testSetShort()
/libcore/libart/src/main/java/java/lang/reflect/
DField.java836 public void setShort(Object object, short value) throws IllegalAccessException, in setShort() method in Field
838 setShort(object, value, isAccessible()); in setShort()
841 private native void setShort(Object object, short value, boolean accessible) in setShort() method in Field
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DArrayTest.java951 Array.setShort(x, 0, (short) 1); in test_setShortLjava_lang_ObjectIS()
957 Array.setShort(new Object(), 0, (short) 9); in test_setShortLjava_lang_ObjectIS()
967 Array.setShort(x, 4, (short) 9); in test_setShortLjava_lang_ObjectIS()
978 Array.setShort(null, 0, (short)0); in test_setShortLjava_lang_ObjectIS()
DFieldTest.java304 f.setShort(o, ((Short) value).shortValue()); in setField()
1473 f.setShort(x, Short.MIN_VALUE); in test_setShortLjava_lang_ObjectS()
1485 f.setShort(x, Short.MIN_VALUE); in test_setShortLjava_lang_ObjectS()
1496 f.setShort(null, Short.MIN_VALUE); in test_setShortLjava_lang_ObjectS()
1507 f.setShort(null, Short.MIN_VALUE); in test_setShortLjava_lang_ObjectS()
/libcore/luni/src/main/java/java/lang/reflect/
DArray.java415 setShort(array, index, ((Short) value).shortValue()); in set()
594 …public static void setShort(Object array, int index, short value) throws IllegalArgumentException,… in setShort() method in Array
/libcore/luni/src/main/java/javax/sql/
DRowSet.java1482 public void setShort(int parameterIndex, short theShort) in setShort() method
1496 public void setShort(String parameterName, short theShort) in setShort() method
/libcore/luni/src/main/java/java/sql/
DPreparedStatement.java556 public void setShort(int parameterIndex, short theShort) in setShort() method
DCallableStatement.java1270 public void setShort(String parameterName, short theShort) in setShort() method
/libcore/luni/src/test/java/tests/java/sql/
DStressTest.java326 ps.setShort(6, (short) 3);
/libcore/luni/src/test/java/libcore/java/sql/
DOldPreparedStatementTest.java1075 ps.setShort(1, Short.MAX_VALUE); in testSetShort()
1089 ps.setShort(1, Short.MIN_VALUE); in testSetShort()
1105 ps.setShort(1, Short.MIN_VALUE); in testSetShort()
1113 ps1.setShort(1, Short.MAX_VALUE); in testSetShort()
1117 ps2.setShort(1, Short.MAX_VALUE); in testSetShort()
/libcore/luni/src/main/java/java/io/
DObjectInputStream.java1105 field.setShort(obj, s); in readFieldValues()