Searched refs:testUnreflectSpecial (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/test/java/lang/invoke/ |
D | MethodHandlesGeneralTest.java | 563 …void testUnreflectSpecial(Class<?> defc, Class<?> rcvc, Class<?> ret, String name, Class<?>... par… in testUnreflectSpecial() method in MethodHandlesGeneralTest 572 public void testUnreflectSpecial() throws Throwable { in testUnreflectSpecial() method in MethodHandlesGeneralTest 575 testUnreflectSpecial(Example.class, Example.class, void.class, "v0"); in testUnreflectSpecial() 576 testUnreflectSpecial(Example.class, SubExample.class, void.class, "v0"); in testUnreflectSpecial() 577 testUnreflectSpecial(Example.class, Example.class, void.class, "pkg_v0"); in testUnreflectSpecial() 578 testUnreflectSpecial(Example.class, SubExample.class, void.class, "pkg_v0"); in testUnreflectSpecial() 579 … testUnreflectSpecial(Example.class, Example.class, Object.class, "v2", int.class, int.class); in testUnreflectSpecial() 580 … testUnreflectSpecial(Example.class, SubExample.class, Object.class, "v2", int.class, int.class); in testUnreflectSpecial()
|