Lines Matching refs:checkWithThrowable

50         checkWithThrowable(UnsupportedOperationException.class, null, r);  in checkUOE()
54 checkWithThrowable(UnsupportedOperationException.class, message, r); in checkUOE()
58 checkWithThrowable(ReadOnlyBufferException.class, null, r); in checkROBE()
62 checkWithThrowable(ReadOnlyBufferException.class, message, r); in checkROBE()
66 checkWithThrowable(IndexOutOfBoundsException.class, null, r); in checkIOOBE()
70 checkWithThrowable(IndexOutOfBoundsException.class, message, r); in checkIOOBE()
74 checkWithThrowable(ArrayStoreException.class, null, r); in checkASE()
78 checkWithThrowable(ArrayStoreException.class, message, r); in checkASE()
82 checkWithThrowable(IllegalStateException.class, null, r); in checkISE()
86 checkWithThrowable(IllegalStateException.class, message, r); in checkISE()
90 checkWithThrowable(IllegalAccessException.class, null, r); in checkIAE()
94 checkWithThrowable(IllegalAccessException.class, message, r); in checkIAE()
98 checkWithThrowable(WrongMethodTypeException.class, null, r); in checkWMTE()
102 checkWithThrowable(WrongMethodTypeException.class, message, r); in checkWMTE()
106 checkWithThrowable(ClassCastException.class, null, r); in checkCCE()
110 checkWithThrowable(ClassCastException.class, message, r); in checkCCE()
114 checkWithThrowable(NullPointerException.class, null, r); in checkNPE()
118 checkWithThrowable(NullPointerException.class, message, r); in checkNPE()
121 static void checkWithThrowable(Class<? extends Throwable> re, in checkWithThrowable() method in VarHandleBaseTest
378 checkWithThrowable(getWMTEOOrOther(ClassCastException.class), null, r); in checkWMTEOrCCE()