Searched defs:throwMode (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java2257 for (int throwMode = 0; throwMode < THROW_MODE_LIMIT; throwMode++) {
2258 testCatchException(int.class, new ClassCastException("testing"), throwMode, nargs);
2260 testCatchException(void.class, new java.io.IOException("testing"), throwMode, nargs);
2261 testCatchException(String.class, new LinkageError("testing"), throwMode, nargs);
2268 void testCatchException(Class<?> returnType, Throwable thrown, int throwMode, int nargs) throws Throwable { argument
2269 testCatchException(returnType, thrown, throwMode, nargs, 0);
2272 testCatchException(returnType, thrown, throwMode, nargs, catchDrops);
2292 void testCatchException(Class<?> returnType, Throwable thrown, int throwMode, in argument
[all...]

Completed in 42 milliseconds