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.java1525 Method meth = null; in getInheritableMethod() local
1529 meth = defCl.getDeclaredMethod(name, argTypes); in getInheritableMethod()
1536 if ((meth == null) || (meth.getReturnType() != returnType)) { in getInheritableMethod()
1539 meth.setAccessible(true); in getInheritableMethod()
1540 int mods = meth.getModifiers(); in getInheritableMethod()
1544 return meth; in getInheritableMethod()
1546 return (cl == defCl) ? meth : null; in getInheritableMethod()
1548 return packageEquals(cl, defCl) ? meth : null; in getInheritableMethod()
1562 Method meth = cl.getDeclaredMethod(name, argTypes); in getPrivateMethod() local
1563 meth.setAccessible(true); in getPrivateMethod()
[all …]
/libcore/luni/src/test/java/libcore/java/lang/invoke/
DMethodHandlesTest.java1914 Method meth = UnreflectTester.class.getMethod("publicMethod"); in testRevealDirect() local
1920 assertEquals(meth, info.reflectAs(Method.class, MethodHandles.lookup())); in testRevealDirect()
1937 meth = UnreflectTester.class.getMethod("publicStaticMethod"); in testRevealDirect()
1942 assertEquals(meth, info.reflectAs(Method.class, MethodHandles.lookup())); in testRevealDirect()
1951 meth = UnreflectTester.class.getMethod("publicVarArgsMethod", String[].class); in testRevealDirect()
1956 assertEquals(meth, info.reflectAs(Method.class, MethodHandles.lookup())); in testRevealDirect()
2026 Method meth = UnreflectTester.class.getMethod("publicMethod"); in testReflectAs() local
2027 assertEquals(meth, reflected); in testReflectAs()
2045 meth = UnreflectTester.class.getDeclaredMethod("privateMethod"); in testReflectAs()
2047 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