Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/io/
DObjectStreamClass.java1451 Method meth = null; in getInheritableMethod() local
1455 meth = defCl.getDeclaredMethod(name, argTypes); in getInheritableMethod()
1462 if ((meth == null) || (meth.getReturnType() != returnType)) { in getInheritableMethod()
1465 meth.setAccessible(true); in getInheritableMethod()
1466 int mods = meth.getModifiers(); in getInheritableMethod()
1470 return meth; in getInheritableMethod()
1472 return (cl == defCl) ? meth : null; in getInheritableMethod()
1474 return packageEquals(cl, defCl) ? meth : null; in getInheritableMethod()
1488 Method meth = cl.getDeclaredMethod(name, argTypes); in getPrivateMethod() local
1489 meth.setAccessible(true); in getPrivateMethod()
[all …]
/libcore/luni/src/test/java/libcore/java/lang/invoke/
DMethodHandlesTest.java1843 Method meth = UnreflectTester.class.getMethod("publicMethod"); in testRevealDirect() local
1849 assertEquals(meth, info.reflectAs(Method.class, MethodHandles.lookup())); in testRevealDirect()
1866 meth = UnreflectTester.class.getMethod("publicStaticMethod"); in testRevealDirect()
1871 assertEquals(meth, info.reflectAs(Method.class, MethodHandles.lookup())); in testRevealDirect()
1880 meth = UnreflectTester.class.getMethod("publicVarArgsMethod", String[].class); in testRevealDirect()
1885 assertEquals(meth, info.reflectAs(Method.class, MethodHandles.lookup())); in testRevealDirect()
1955 Method meth = UnreflectTester.class.getMethod("publicMethod"); in testReflectAs() local
1956 assertEquals(meth, reflected); in testReflectAs()
1974 meth = UnreflectTester.class.getDeclaredMethod("privateMethod"); in testReflectAs()
1976 assertEquals(meth, reflected); in testReflectAs()
/libcore/ojluni/annotations/hiddenapi/java/lang/reflect/
DExecutable.java205 native int compareMethodParametersInternal(java.lang.reflect.Method meth); in compareMethodParametersInternal() argument
/libcore/ojluni/src/main/java/java/lang/reflect/
DExecutable.java731 native int compareMethodParametersInternal(Method meth); in compareMethodParametersInternal() argument
/libcore/ojluni/annotations/hiddenapi/java/io/
DObjectStreamClass.java687 public MemberSignature(java.lang.reflect.Method meth) { in MemberSignature() argument