Lines Matching refs:expectFailure

101         static void setByte(MethodHandle m, ValueHolder v, byte value, boolean expectFailure)  in setByte()  argument
115 assertEquals(expectFailure, exceptionThrown); in setByte()
118 static void setByte(MethodHandle m, byte value, boolean expectFailure) throws Throwable { in setByte() argument
119 setByte(m, null, value, expectFailure); in setByte()
122 static void getByte(MethodHandle m, ValueHolder v, byte value, boolean expectFailure) in getByte() argument
137 assertEquals(expectFailure, exceptionThrown); in getByte()
140 static void getByte(MethodHandle m, byte value, boolean expectFailure) throws Throwable { in getByte() argument
141 getByte(m, null, value, expectFailure); in getByte()
144 static void setChar(MethodHandle m, ValueHolder v, char value, boolean expectFailure) in setChar() argument
158 assertEquals(expectFailure, exceptionThrown); in setChar()
161 static void setChar(MethodHandle m, char value, boolean expectFailure) throws Throwable { in setChar() argument
162 setChar(m, null, value, expectFailure); in setChar()
165 static void getChar(MethodHandle m, ValueHolder v, char value, boolean expectFailure) in getChar() argument
180 assertEquals(expectFailure, exceptionThrown); in getChar()
183 static void getChar(MethodHandle m, char value, boolean expectFailure) throws Throwable { in getChar() argument
184 getChar(m, null, value, expectFailure); in getChar()
187 static void setShort(MethodHandle m, ValueHolder v, short value, boolean expectFailure) in setShort() argument
201 assertEquals(expectFailure, exceptionThrown); in setShort()
204 static void setShort(MethodHandle m, short value, boolean expectFailure) throws Throwable { in setShort() argument
205 setShort(m, null, value, expectFailure); in setShort()
208 static void getShort(MethodHandle m, ValueHolder v, short value, boolean expectFailure) in getShort() argument
218 assertEquals(expectFailure, exceptionThrown); in getShort()
221 static void getShort(MethodHandle m, short value, boolean expectFailure) throws Throwable { in getShort() argument
222 getShort(m, null, value, expectFailure); in getShort()
225 static void setInt(MethodHandle m, ValueHolder v, int value, boolean expectFailure) in setInt() argument
239 assertEquals(expectFailure, exceptionThrown); in setInt()
242 static void setInt(MethodHandle m, int value, boolean expectFailure) throws Throwable { in setInt() argument
243 setInt(m, null, value, expectFailure); in setInt()
246 static void getInt(MethodHandle m, ValueHolder v, int value, boolean expectFailure) in getInt() argument
256 assertEquals(expectFailure, exceptionThrown); in getInt()
259 static void getInt(MethodHandle m, int value, boolean expectFailure) throws Throwable { in getInt() argument
260 getInt(m, null, value, expectFailure); in getInt()
263 static void setLong(MethodHandle m, ValueHolder v, long value, boolean expectFailure) in setLong() argument
277 assertEquals(expectFailure, exceptionThrown); in setLong()
280 static void setLong(MethodHandle m, long value, boolean expectFailure) throws Throwable { in setLong() argument
281 setLong(m, null, value, expectFailure); in setLong()
284 static void getLong(MethodHandle m, ValueHolder v, long value, boolean expectFailure) in getLong() argument
294 assertEquals(expectFailure, exceptionThrown); in getLong()
297 static void getLong(MethodHandle m, long value, boolean expectFailure) throws Throwable { in getLong() argument
298 getLong(m, null, value, expectFailure); in getLong()
301 static void setFloat(MethodHandle m, ValueHolder v, float value, boolean expectFailure) in setFloat() argument
315 assertEquals(expectFailure, exceptionThrown); in setFloat()
318 static void setFloat(MethodHandle m, float value, boolean expectFailure) throws Throwable { in setFloat() argument
319 setFloat(m, null, value, expectFailure); in setFloat()
322 static void getFloat(MethodHandle m, ValueHolder v, float value, boolean expectFailure) in getFloat() argument
332 assertEquals(expectFailure, exceptionThrown); in getFloat()
335 static void getFloat(MethodHandle m, float value, boolean expectFailure) throws Throwable { in getFloat() argument
336 getFloat(m, null, value, expectFailure); in getFloat()
339 static void setDouble(MethodHandle m, ValueHolder v, double value, boolean expectFailure) in setDouble() argument
353 assertEquals(expectFailure, exceptionThrown); in setDouble()
356 static void setDouble(MethodHandle m, double value, boolean expectFailure) in setDouble() argument
358 setDouble(m, null, value, expectFailure); in setDouble()
361 static void getDouble(MethodHandle m, ValueHolder v, double value, boolean expectFailure) in getDouble() argument
371 assertEquals(expectFailure, exceptionThrown); in getDouble()
374 static void getDouble(MethodHandle m, double value, boolean expectFailure) in getDouble() argument
376 getDouble(m, null, value, expectFailure); in getDouble()
379 static void setString(MethodHandle m, ValueHolder v, String value, boolean expectFailure) in setString() argument
393 assertEquals(expectFailure, exceptionThrown); in setString()
396 static void setString(MethodHandle m, String value, boolean expectFailure) in setString() argument
398 setString(m, null, value, expectFailure); in setString()
401 static void getString(MethodHandle m, ValueHolder v, String value, boolean expectFailure) in getString() argument
411 assertEquals(expectFailure, exceptionThrown); in getString()
414 static void getString(MethodHandle m, String value, boolean expectFailure) in getString() argument
416 getString(m, null, value, expectFailure); in getString()
419 static void setBoolean(MethodHandle m, ValueHolder v, boolean value, boolean expectFailure) in setBoolean() argument
433 assertEquals(expectFailure, exceptionThrown); in setBoolean()
436 static void setBoolean(MethodHandle m, boolean value, boolean expectFailure) in setBoolean() argument
438 setBoolean(m, null, value, expectFailure); in setBoolean()
441 static void getBoolean(MethodHandle m, ValueHolder v, boolean value, boolean expectFailure) in getBoolean() argument
452 assertEquals(expectFailure, exceptionThrown); in getBoolean()
455 static void getBoolean(MethodHandle m, boolean value, boolean expectFailure) in getBoolean() argument
457 getBoolean(m, null, value, expectFailure); in getBoolean()