Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/io/
DObjectStreamClass.java1385 Method meth = null; in getInheritableMethod() local
1389 meth = defCl.getDeclaredMethod(name, argTypes); in getInheritableMethod()
1396 if ((meth == null) || (meth.getReturnType() != returnType)) { in getInheritableMethod()
1399 meth.setAccessible(true); in getInheritableMethod()
1400 int mods = meth.getModifiers(); in getInheritableMethod()
1404 return meth; in getInheritableMethod()
1406 return (cl == defCl) ? meth : null; in getInheritableMethod()
1408 return packageEquals(cl, defCl) ? meth : null; in getInheritableMethod()
1422 Method meth = cl.getDeclaredMethod(name, argTypes); in getPrivateMethod() local
1423 meth.setAccessible(true); in getPrivateMethod()
[all …]