Lines Matching refs:invokeExact

80       transform.invokeExact("foo", 42l);  in testDropArguments()
85 transform.invokeExact(45, new Object(), "foo", 42l); in testDropArguments()
90 transform.invokeExact("foo", 45, new Object(), 42l); in testDropArguments()
95 transform.invokeExact("foo", 42l, 45, new Object()); in testDropArguments()
113 transform.invokeExact((short) 45, new Object(), "foo", 42l); in testDropArguments()
176 returnVal = (String) adapter.invokeExact("foo", 42l, (String) null); in testCatchException()
183 returnVal = (String) adapter.invokeExact("foo", 42l, "exceptionMessage"); in testCatchException()
194 returnVal = (String) adapter.invokeExact("foo", 42l, "exceptionMessage"); in testCatchException()
206 returnVal = (String) adapter.invokeExact("foo", 42l, "exceptionMessage2"); in testCatchException()
214 returnVal = (String) adapter.invokeExact("foo", 42, "exceptionMessage"); in testCatchException()
251 returnVal = (String) adapter.invokeExact("target", 42l, 56); in testGuardWithTest()
256 returnVal = (String) adapter.invokeExact("target", 42l, 56); in testGuardWithTest()
262 returnVal = (String) adapter.invokeExact("target", 42, 56); in testGuardWithTest()
1039 spreadInvoker.invokeExact(delegate, new String[] { "a", "b", "c" }); in testSpreaders_reference()
1107 int ret = (int) spreader.invokeExact("a", new boolean[] { true, false }); in testSpreaders_primitive()
1136 ret = (int) spreader.invokeExact("a", in testSpreaders_primitive()
1152 ret = (int) spreader.invokeExact("a", in testSpreaders_primitive()
1155 ret = (int) spreader.invokeExact("a", in testSpreaders_primitive()
1168 ret = (int) spreader.invokeExact("a", in testSpreaders_primitive()
1184 ret = (int) spreader.invokeExact("a", new int[] { 1, 2, 3, 4, 5 }); in testSpreaders_primitive()
1186 ret = (int) spreader.invokeExact("a", new int[] { 1, 2, 3, 4, 5 }); in testSpreaders_primitive()
1197 ret = (int) spreader.invokeExact("a", in testSpreaders_primitive()
1212 ret = (int) spreader.invokeExact("a", in testSpreaders_primitive()
1215 ret = (int) spreader.invokeExact("a", in testSpreaders_primitive()
1226 ret = (int) spreader.invokeExact("a", new double[] { 1.0, 2.0 }); in testSpreaders_primitive()
1228 ret = (int) spreader.invokeExact("a", new double[] { 1.0, 2.0 }); in testSpreaders_primitive()
1414 assertEquals(56, (int) adapter.invokeExact('a', "bXXXX", "c", 'd')); in testFilterArguments()
1418 assertEquals(56, (int) adapter.invokeExact("a", "bXXXX", 'c', 'd')); in testFilterArguments()
1422 assertEquals(56, (int) adapter.invokeExact("a", 'b', 'c', "dXXXXX")); in testFilterArguments()
1489 assertEquals(57, (int) adapter.invokeExact('a', 'b', "c", "d")); in testCollectArguments()
1493 assertEquals(57, (int) adapter.invokeExact("a", 'b', 'c', "d")); in testCollectArguments()
1497 assertEquals(57, (int) adapter.invokeExact("a", "b", 'c', 'd')); in testCollectArguments()
1505 assertEquals(57, (int) adapter.invokeExact('a', 'b', "a", "b", "c")); in testCollectArguments()
1508 assertEquals(57, (int) adapter.invokeExact("a", 'a', 'b', "b", "c")); in testCollectArguments()
1547 assertEquals(73, (int) adapter.invokeExact(45, Integer.valueOf(56), "bar")); in testInsertArguments()
1552 assertEquals(73, (int) adapter.invokeExact("foo", "bar")); in testInsertArguments()
1557 assertEquals(73, (int) adapter.invokeExact("foo", "bar")); in testInsertArguments()
1562 assertEquals(73, (int) adapter.invokeExact("foo", 45, Integer.valueOf(46))); in testInsertArguments()
1614 assertEquals(89, (int) adapter.invokeExact('c', 'd', "e")); in testFoldArguments()
1621 assertEquals(89, (int) adapter.invokeExact("a", 'c', 'd', "e")); in testFoldArguments()