Searched refs:argList (Results 1 – 2 of 2) sorted by relevance
1393 for (Object[] argList : argLists) { in testGuardWithTest()1394 Object[] argList1 = argList; in testGuardWithTest()1395 if (argList.length != nargs) { in testGuardWithTest()1396 if (argList.length != nargs1) continue; in testGuardWithTest()1397 argList1 = Arrays.copyOf(argList, nargs); in testGuardWithTest()1410 case 1: equals = MethodHandlesTest.MISSING_ARG.equals(argList[0]); break; in testGuardWithTest()1411 default: equals = argList[0].equals(argList[1]); break; in testGuardWithTest()1415 System.out.println(logEntry(willCall, argList)); in testGuardWithTest()1417 assertCalled(willCall, argList); in testGuardWithTest()
469 List<Object> argList = Arrays.asList(args); in testReferenceConversions() local470 String expectString = argList.toString(); in testReferenceConversions()