Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/lang/
DClassTest.java236 Method m = TestGetVirtualMethod.class.getInstanceMethod("packageMethod2", noArgs); in test_getVirtualMethod()
239 m = TestGetVirtualMethod.class.getInstanceMethod("packageMethod", noArgs); in test_getVirtualMethod()
245 m = TestGetVirtualMethod.class.getInstanceMethod("protectedMethod2", noArgs); in test_getVirtualMethod()
248 m = TestGetVirtualMethod.class.getInstanceMethod("protectedMethod", noArgs); in test_getVirtualMethod()
254 m = TestGetVirtualMethod.class.getInstanceMethod("publicMethod2", noArgs); in test_getVirtualMethod()
257 m = TestGetVirtualMethod.class.getInstanceMethod("publicMethod", noArgs); in test_getVirtualMethod()
261 m = TestGetVirtualMethod.class.getInstanceMethod("privateMethod", noArgs); in test_getVirtualMethod()
264 assertNull(TestGetVirtualMethod.class.getInstanceMethod("staticMethod", noArgs)); in test_getVirtualMethod()
/libcore/ojluni/annotations/mmodule/java/lang/
DClass.annotated.java148 public java.lang.reflect.Method getInstanceMethod(java.lang.String name, java.lang.Class<?>[] param… in getInstanceMethod() method in Class
/libcore/ojluni/annotations/hiddenapi/java/lang/
DClass.java287 public java.lang.reflect.Method getInstanceMethod( in getInstanceMethod() method in Class
/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodHandles.java908 Method method = refc.getInstanceMethod(name, type.ptypes()); in findVirtual()