Home
last modified time | relevance | path

Searched refs:setByte (Results 1 – 13 of 13) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/reflect/
DArrayTest.java153 … 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/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DArrayTest.java675 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()
DFieldTest.java307 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/ojluni/src/main/java/javax/sql/
DRowSet.java575 void setByte(int parameterIndex, byte x) throws SQLException; in setByte() method
591 void setByte(String parameterName, byte x) throws SQLException; in setByte() method
/libcore/ojluni/src/main/java/java/lang/reflect/
DArray.java487 setByte(array, index, ((Byte) value).byteValue()); in set()
550 public static void setByte(Object array, int index, byte b) in setByte() method in Array
DField.java708 public native void setByte(Object obj, byte b) in setByte() method in Field
/libcore/luni/src/test/java/libcore/java/lang/invoke/
DMethodHandleAccessorsTest.java74 static void setByte(MethodHandle m, ValueHolder v, byte value, boolean expectFailure) in setByte() method in MethodHandleAccessorsTest
91 static void setByte(MethodHandle m, byte value, boolean expectFailure) throws Throwable { in setByte() method in MethodHandleAccessorsTest
92 setByte(m, null, value, expectFailure); in setByte()
456 setByte(methodHandle, valueHolder, byteValue, in tryAccessor()
458 setByte(methodHandle, byteValue, in tryAccessor()
/libcore/ojluni/src/main/java/java/sql/
DPreparedStatement.java143 void setByte(int parameterIndex, byte x) throws SQLException; in setByte() method
DCallableStatement.java831 void setByte(String parameterName, byte x) throws SQLException; in setByte() method
/libcore/ojluni/annotations/hiddenapi/java/lang/reflect/
DField.java124 public native void setByte(java.lang.Object obj, byte b) in setByte() method in Field
/libcore/ojluni/annotations/sdk/nullability/java/lang/reflect/
DArray.annotated.java64 public static void setByte(@libcore.util.NonNull java.lang.Object array, int index, byte b) throws … in setByte() method in Array
DField.annotated.java80 public native void setByte(@libcore.util.Nullable java.lang.Object obj, byte b) throws java.lang.Il… in setByte() method in Field
/libcore/luni/src/test/java/libcore/java/sql/
DOldPreparedStatementTest.java1200 ps.setByte(1, Byte.MAX_VALUE); in testSetByte()
1214 ps.setByte(1, Byte.MIN_VALUE); in testSetByte()
1228 ps.setByte(2, Byte.MAX_VALUE); in testSetByte()
1237 ps.setByte(1, Byte.MIN_VALUE); in testSetByte()
1245 ps1.setByte(1, Byte.MAX_VALUE); in testSetByte()