Home
last modified time | relevance | path

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

/art/test/956-methodhandles/src/
DMain.java573 MethodHandles.Lookup lookupInG = g.getLookup(); in testUnreflects() local
575 lookupInG.unreflectSpecial(methodInG, G.class).invoke(g); // prints "G.sayHi()" in testUnreflects()
578 lookupInG.unreflect(methodInF).invoke(g); // prints "G.sayHi()" in testUnreflects()
579 lookupInG.in(G.class).unreflectSpecial(methodInF, G.class).invoke(g); // prints "F.sayHi()" in testUnreflects()
580 lookupInG.unreflectSpecial(methodInF, G.class).bindTo(g).invokeWithArguments(); in testUnreflects()