Searched refs:testBind (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/test/java/lang/invoke/ |
D | MethodHandlesGeneralTest.java | 401 public void testBind() throws Throwable { in testBind() method in MethodHandlesGeneralTest 404 testBind(Example.class, void.class, "v0"); in testBind() 405 testBind(Example.class, void.class, "pkg_v0"); in testBind() 406 testBind(Example.class, void.class, "pri_v0"); in testBind() 407 testBind(Example.class, Object.class, "v1", Object.class); in testBind() 408 testBind(Example.class, Object.class, "v2", Object.class, Object.class); in testBind() 409 testBind(Example.class, Object.class, "v2", Object.class, int.class); in testBind() 410 testBind(Example.class, Object.class, "v2", int.class, Object.class); in testBind() 411 testBind(Example.class, Object.class, "v2", int.class, int.class); in testBind() 412 testBind(false, PRIVATE, Example.class, void.class, "bogus"); in testBind() [all …]
|