Searched refs:returnVal (Results 1 – 1 of 1) sorted by relevance
/art/test/957-methodhandle-transforms/src/ |
D | Main.java | 171 String returnVal = null; in testCatchException() local 175 returnVal = (String) adapter.invoke("foo", 42, null); in testCatchException() 176 assertEquals("target", returnVal); in testCatchException() 177 returnVal = (String) adapter.invokeExact("foo", 42l, (String) null); in testCatchException() 178 assertEquals("target", returnVal); in testCatchException() 182 returnVal = (String) adapter.invoke("foo", 42, "exceptionMessage"); in testCatchException() 183 assertEquals("handler1", returnVal); in testCatchException() 184 returnVal = (String) adapter.invokeExact("foo", 42l, "exceptionMessage"); in testCatchException() 185 assertEquals("handler1", returnVal); in testCatchException() 193 returnVal = (String) adapter.invoke("foo", 42, "exceptionMessage"); in testCatchException() [all …]
|