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

/libcore/luni/src/test/java/libcore/java/lang/reflect/
H A DArrayTest.java153 try { Array.setByte(booleans, 0, bytes[0]); fail(); } catch (IllegalArgumentException expected) {}
154 Array.setByte(bytes, 0, bytes[0]);
155 try { Array.setByte(chars, 0, bytes[0]); fail(); } catch (IllegalArgumentException expected) {}
156 Array.setByte(doubles, 0, bytes[0]);
157 Array.setByte(floats, 0, bytes[0]);
158 Array.setByte(ints, 0, bytes[0]);
159 Array.setByte(longs, 0, bytes[0]);
160 Array.setByte(shorts, 0, bytes[0]);
161 try { Array.setByte(null, 0, bytes[0]); fail(); } catch (NullPointerException expected) {}
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
H A DArrayTest.java667 * java.lang.reflect.Array#setByte(java.lang.Object, int, byte)
671 // java.lang.reflect.Array.setByte(java.lang.Object, int, byte)
675 Array.setByte(x, 0, (byte) 1);
681 Array.setByte(new Object(), 0, (byte) 9);
691 Array.setByte(x, 4, (byte) 9);
702 Array.setByte(null, 0, (byte)0);
H A DFieldTest.java307 f.setByte(o, ((Byte) value).byteValue());
350 * java.lang.reflect.Field#setByte(java.lang.Object, byte)
415 // and pass a byte to to setByte for byte, short, ..., float and double
1160 * java.lang.reflect.Field#setByte(java.lang.Object, byte)
1164 // java.lang.reflect.Field.setByte(java.lang.Object, byte)
1170 f.setByte(x, (byte) 1);
1173 fail("Exception during setByte test : " + e.getMessage());
1181 f.setByte(x, Byte.MIN_VALUE);
1192 f.setByte(null, Byte.MIN_VALUE);
1203 f.setByte(nul
[all...]
/libcore/ojluni/src/main/java/java/sql/
H A DPreparedStatement.java143 void setByte(int parameterIndex, byte x) throws SQLException; method in interface:PreparedStatement
H A DCallableStatement.java203 * @see #setByte
830 void setByte(String parameterName, byte x) throws SQLException; method in interface:CallableStatement
1385 * @see #setByte
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DArray.java487 setByte(array, index, ((Byte) value).byteValue());
549 // Android-changed: Non-native implementation of setByte(Object, int, byte)
550 public static void setByte(Object array, int index, byte b) method in class:Array
H A DField.java703 public native void setByte(Object obj, byte b) method in class:Field
/libcore/ojluni/src/main/java/javax/sql/
H A DRowSet.java575 void setByte(int parameterIndex, byte x) throws SQLException; method in interface:RowSet
591 void setByte(String parameterName, byte x) throws SQLException; method in interface:RowSet
/libcore/luni/src/test/java/libcore/java/lang/invoke/
H A DMethodHandleAccessorsTest.java74 static void setByte(MethodHandle m, ValueHolder v, byte value, boolean expectFailure) method in class:MethodHandleAccessorsTest
91 static void setByte(MethodHandle m, byte value, boolean expectFailure) throws Throwable { method in class:MethodHandleAccessorsTest
92 setByte(m, null, value, expectFailure);
456 setByte(methodHandle, valueHolder, byteValue,
458 setByte(methodHandle, byteValue,
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldPreparedStatementTest.java1200 ps.setByte(1, Byte.MAX_VALUE);
1214 ps.setByte(1, Byte.MIN_VALUE);
1228 ps.setByte(2, Byte.MAX_VALUE);
1237 ps.setByte(1, Byte.MIN_VALUE);
1245 ps1.setByte(1, Byte.MAX_VALUE);

Completed in 104 milliseconds