Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/lang/
DClassTest.java285 Method m = TestGetVirtualMethod.class.getInstanceMethod("packageMethod2", noArgs); in getVirtualMethod()
288 m = TestGetVirtualMethod.class.getInstanceMethod("packageMethod", noArgs); in getVirtualMethod()
294 m = TestGetVirtualMethod.class.getInstanceMethod("protectedMethod2", noArgs); in getVirtualMethod()
297 m = TestGetVirtualMethod.class.getInstanceMethod("protectedMethod", noArgs); in getVirtualMethod()
303 m = TestGetVirtualMethod.class.getInstanceMethod("publicMethod2", noArgs); in getVirtualMethod()
306 m = TestGetVirtualMethod.class.getInstanceMethod("publicMethod", noArgs); in getVirtualMethod()
310 m = TestGetVirtualMethod.class.getInstanceMethod("privateMethod", noArgs); in getVirtualMethod()
313 assertNull(TestGetVirtualMethod.class.getInstanceMethod("staticMethod", noArgs)); in 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/
DClass.java2976 public Method getInstanceMethod(String name, Class<?>[] parameterTypes) in getInstanceMethod() method in Class
/libcore/ojluni/src/main/java/java/lang/invoke/
DMethodHandles.java968 Method method = refc.getInstanceMethod(name, type.ptypes()); in findVirtual()