Searched defs:getDeclaredMethods (Results 1 - 2 of 2) sorted by relevance

/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DClassCache.java151 public Method[] getDeclaredMethods() { method in class:ClassCache
153 declaredMethods = Class.getDeclaredMethods(clazz, false);
166 declaredPublicMethods = Class.getDeclaredMethods(clazz, true);
178 public Method[] getDeclaredMethods(boolean publicOnly) { method in class:ClassCache
179 return publicOnly ? getDeclaredPublicMethods() : getDeclaredMethods();
250 clazz.getClassCache().getDeclaredMethods(publicOnly);
671 Class.getDeclaredMethods(AccessibleObject.class, false);
H A DClass.java747 Method[] methods = getClassCache().getDeclaredMethods();
770 public Method[] getDeclaredMethods() throws SecurityException { method in class:Class
774 Method[] methods = getClassCache().getDeclaredMethods();
782 static native Method[] getDeclaredMethods(Class<?> clazz, boolean publicOnly); method in class:Class
1009 * @see #getDeclaredMethods()

Completed in 112 milliseconds