/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
D | ArrayTest.java | 153 … try { Array.setByte(booleans, 0, bytes[0]); fail(); } catch (IllegalArgumentException expected) {} in testSetByte() 154 Array.setByte(bytes, 0, bytes[0]); in testSetByte() 155 try { Array.setByte(chars, 0, bytes[0]); fail(); } catch (IllegalArgumentException expected) {} in testSetByte() 156 Array.setByte(doubles, 0, bytes[0]); in testSetByte() 157 Array.setByte(floats, 0, bytes[0]); in testSetByte() 158 Array.setByte(ints, 0, bytes[0]); in testSetByte() 159 Array.setByte(longs, 0, bytes[0]); in testSetByte() 160 Array.setByte(shorts, 0, bytes[0]); in testSetByte() 161 try { Array.setByte(null, 0, bytes[0]); fail(); } catch (NullPointerException expected) {} in testSetByte()
|
/libcore/libart/src/main/java/java/lang/reflect/ |
D | Field.java | 626 public void setByte(Object object, byte value) throws IllegalAccessException, in setByte() method in Field 628 setByte(object, value, isAccessible()); in setByte() 631 private native void setByte(Object object, byte value, boolean accessible) in setByte() method in Field
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/ |
D | ArrayTest.java | 675 Array.setByte(x, 0, (byte) 1); in test_setByteLjava_lang_ObjectIB() 681 Array.setByte(new Object(), 0, (byte) 9); in test_setByteLjava_lang_ObjectIB() 691 Array.setByte(x, 4, (byte) 9); in test_setByteLjava_lang_ObjectIB() 702 Array.setByte(null, 0, (byte)0); in test_setByteLjava_lang_ObjectIB()
|
D | FieldTest.java | 307 f.setByte(o, ((Byte) value).byteValue()); in setField() 1170 f.setByte(x, (byte) 1); in test_setByteLjava_lang_ObjectB() 1181 f.setByte(x, Byte.MIN_VALUE); in test_setByteLjava_lang_ObjectB() 1192 f.setByte(null, Byte.MIN_VALUE); in test_setByteLjava_lang_ObjectB() 1203 f.setByte(null, Byte.MIN_VALUE); in test_setByteLjava_lang_ObjectB()
|
/libcore/luni/src/main/java/java/lang/reflect/ |
D | Array.java | 411 setByte(array, index, ((Byte) value).byteValue()); in set() 456 …public static void setByte(Object array, int index, byte value) throws IllegalArgumentException, A… in setByte() method in Array
|
/libcore/luni/src/main/java/javax/sql/ |
D | RowSet.java | 583 public void setByte(int parameterIndex, byte theByte) throws SQLException; in setByte() method 596 public void setByte(String parameterName, byte theByte) throws SQLException; in setByte() method
|
/libcore/luni/src/main/java/java/sql/ |
D | PreparedStatement.java | 251 public void setByte(int parameterIndex, byte theByte) throws SQLException; in setByte() method
|
D | CallableStatement.java | 1005 public void setByte(String parameterName, byte theByte) throws SQLException; in setByte() method
|
/libcore/luni/src/test/java/libcore/java/sql/ |
D | OldPreparedStatementTest.java | 1202 ps.setByte(1, Byte.MAX_VALUE); in testSetByte() 1216 ps.setByte(1, Byte.MIN_VALUE); in testSetByte() 1230 ps.setByte(2, Byte.MAX_VALUE); in testSetByte() 1239 ps.setByte(1, Byte.MIN_VALUE); in testSetByte() 1247 ps1.setByte(1, Byte.MAX_VALUE); in testSetByte()
|
/libcore/luni/src/main/java/java/io/ |
D | ObjectInputStream.java | 1075 field.setByte(obj, b); in readFieldValues()
|