Lines Matching refs:expectFailure
103 static void setByte(MethodHandle m, ValueHolder v, byte value, boolean expectFailure) in setByte() argument
117 assertEquals(expectFailure, exceptionThrown); in setByte()
120 static void setByte(MethodHandle m, byte value, boolean expectFailure) throws Throwable { in setByte() argument
121 setByte(m, null, value, expectFailure); in setByte()
124 static void getByte(MethodHandle m, ValueHolder v, byte value, boolean expectFailure) in getByte() argument
139 assertEquals(expectFailure, exceptionThrown); in getByte()
142 static void getByte(MethodHandle m, byte value, boolean expectFailure) throws Throwable { in getByte() argument
143 getByte(m, null, value, expectFailure); in getByte()
146 static void setChar(MethodHandle m, ValueHolder v, char value, boolean expectFailure) in setChar() argument
160 assertEquals(expectFailure, exceptionThrown); in setChar()
163 static void setChar(MethodHandle m, char value, boolean expectFailure) throws Throwable { in setChar() argument
164 setChar(m, null, value, expectFailure); in setChar()
167 static void getChar(MethodHandle m, ValueHolder v, char value, boolean expectFailure) in getChar() argument
182 assertEquals(expectFailure, exceptionThrown); in getChar()
185 static void getChar(MethodHandle m, char value, boolean expectFailure) throws Throwable { in getChar() argument
186 getChar(m, null, value, expectFailure); in getChar()
189 static void setShort(MethodHandle m, ValueHolder v, short value, boolean expectFailure) in setShort() argument
203 assertEquals(expectFailure, exceptionThrown); in setShort()
206 static void setShort(MethodHandle m, short value, boolean expectFailure) throws Throwable { in setShort() argument
207 setShort(m, null, value, expectFailure); in setShort()
210 static void getShort(MethodHandle m, ValueHolder v, short value, boolean expectFailure) in getShort() argument
220 assertEquals(expectFailure, exceptionThrown); in getShort()
223 static void getShort(MethodHandle m, short value, boolean expectFailure) throws Throwable { in getShort() argument
224 getShort(m, null, value, expectFailure); in getShort()
227 static void setInt(MethodHandle m, ValueHolder v, int value, boolean expectFailure) in setInt() argument
241 assertEquals(expectFailure, exceptionThrown); in setInt()
244 static void setInt(MethodHandle m, int value, boolean expectFailure) throws Throwable { in setInt() argument
245 setInt(m, null, value, expectFailure); in setInt()
248 static void getInt(MethodHandle m, ValueHolder v, int value, boolean expectFailure) in getInt() argument
258 assertEquals(expectFailure, exceptionThrown); in getInt()
261 static void getInt(MethodHandle m, int value, boolean expectFailure) throws Throwable { in getInt() argument
262 getInt(m, null, value, expectFailure); in getInt()
265 static void setLong(MethodHandle m, ValueHolder v, long value, boolean expectFailure) in setLong() argument
279 assertEquals(expectFailure, exceptionThrown); in setLong()
282 static void setLong(MethodHandle m, long value, boolean expectFailure) throws Throwable { in setLong() argument
283 setLong(m, null, value, expectFailure); in setLong()
286 static void getLong(MethodHandle m, ValueHolder v, long value, boolean expectFailure) in getLong() argument
296 assertEquals(expectFailure, exceptionThrown); in getLong()
299 static void getLong(MethodHandle m, long value, boolean expectFailure) throws Throwable { in getLong() argument
300 getLong(m, null, value, expectFailure); in getLong()
303 static void setFloat(MethodHandle m, ValueHolder v, float value, boolean expectFailure) in setFloat() argument
317 assertEquals(expectFailure, exceptionThrown); in setFloat()
320 static void setFloat(MethodHandle m, float value, boolean expectFailure) throws Throwable { in setFloat() argument
321 setFloat(m, null, value, expectFailure); in setFloat()
324 static void getFloat(MethodHandle m, ValueHolder v, float value, boolean expectFailure) in getFloat() argument
334 assertEquals(expectFailure, exceptionThrown); in getFloat()
337 static void getFloat(MethodHandle m, float value, boolean expectFailure) throws Throwable { in getFloat() argument
338 getFloat(m, null, value, expectFailure); in getFloat()
341 static void setDouble(MethodHandle m, ValueHolder v, double value, boolean expectFailure) in setDouble() argument
355 assertEquals(expectFailure, exceptionThrown); in setDouble()
358 static void setDouble(MethodHandle m, double value, boolean expectFailure) in setDouble() argument
360 setDouble(m, null, value, expectFailure); in setDouble()
363 static void getDouble(MethodHandle m, ValueHolder v, double value, boolean expectFailure) in getDouble() argument
373 assertEquals(expectFailure, exceptionThrown); in getDouble()
376 static void getDouble(MethodHandle m, double value, boolean expectFailure) in getDouble() argument
378 getDouble(m, null, value, expectFailure); in getDouble()
381 static void setString(MethodHandle m, ValueHolder v, String value, boolean expectFailure) in setString() argument
395 assertEquals(expectFailure, exceptionThrown); in setString()
398 static void setString(MethodHandle m, String value, boolean expectFailure) in setString() argument
400 setString(m, null, value, expectFailure); in setString()
403 static void getString(MethodHandle m, ValueHolder v, String value, boolean expectFailure) in getString() argument
413 assertEquals(expectFailure, exceptionThrown); in getString()
416 static void getString(MethodHandle m, String value, boolean expectFailure) in getString() argument
418 getString(m, null, value, expectFailure); in getString()
421 static void setBoolean(MethodHandle m, ValueHolder v, boolean value, boolean expectFailure) in setBoolean() argument
435 assertEquals(expectFailure, exceptionThrown); in setBoolean()
438 static void setBoolean(MethodHandle m, boolean value, boolean expectFailure) in setBoolean() argument
440 setBoolean(m, null, value, expectFailure); in setBoolean()
443 static void getBoolean(MethodHandle m, ValueHolder v, boolean value, boolean expectFailure) in getBoolean() argument
454 assertEquals(expectFailure, exceptionThrown); in getBoolean()
457 static void getBoolean(MethodHandle m, boolean value, boolean expectFailure) in getBoolean() argument
459 getBoolean(m, null, value, expectFailure); in getBoolean()