Home
last modified time | relevance | path

Searched refs:meth (Results 1 – 3 of 3) 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/ojluni/annotations/hiddenapi/java/lang/reflect/
DExecutable.java205 native int compareMethodParametersInternal(java.lang.reflect.Method meth); in compareMethodParametersInternal() argument
/libcore/ojluni/annotations/hiddenapi/java/io/
DObjectStreamClass.java687 public MemberSignature(java.lang.reflect.Method meth) { in MemberSignature() argument