Home
last modified time | relevance | path

Searched refs:argsWithSelf (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/test/java/lang/invoke/
DMethodHandlesGeneralTest.java251 Object[] argsWithSelf = randomArgs(paramsWithSelf); in testFindVirtual() local
252 if (selfc.isAssignableFrom(rcvc) && rcvc != selfc) argsWithSelf[0] = randomArg(rcvc); in testFindVirtual()
253 printCalled(target, name, argsWithSelf); in testFindVirtual()
254 Object res = target.invokeWithArguments(argsWithSelf); in testFindVirtual()
256 assertCalled(name, argsWithSelf); in testFindVirtual()
259 printCalled(target, name, argsWithSelf); in testFindVirtual()
261 Object orig = argsWithSelf[0]; in testFindVirtual()
264 assertArrayEquals((Object[])res, (Object[])argsWithSelf[0]); in testFindVirtual()
265 assert(Arrays.deepEquals(new Object[]{res}, new Object[]{argsWithSelf[0]})); in testFindVirtual()