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