Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/lang/reflect/
DMethodOverridesTest.java56 Set<String> signatures = signatures(Sub.class.getMethods()); in testGetMethodsIncludesInheritedMethods()
71 Set<String> signatures = signatures(Sub.class.getMethods()); in testGetMethodsDoesNotIncludeExceptionChanges()
78 Set<String> signatures = signatures(Sub.class.getMethods()); in testGetMethodsIncludesSyntheticMethods()
98 Method[] methods = Sub.class.getMethods(); in testSubclassChangesVisibility()
115 Method[] methods = PublicSub.class.getMethods(); in testMoreVisibleSubclassChangesVisibility()
/libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
DAnnotationTypeMismatchExceptionTest.java38 Method[] methods = Class.forName("java.lang.String").getMethods(); in test_constructorLjava_lang_reflect_MethodLjava_lang_String()
/libcore/luni/src/test/java/libcore/java/lang/
DReflectionSecurityTest.java150 c.getMethods(); in testReflectionSecurity()
155 c.getMethods(); in testReflectionSecurity()
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
DClassTest.java1274 Method[] m = TestClass.class.getMethods(); in test_getMethods()
1276 2 + Object.class.getMethods().length, m.length); in test_getMethods()
1277 m = SubTestClass.class.getMethods(); in test_getMethods()
1279 2 + Object.class.getMethods().length, m.length); in test_getMethods()
1283 Cls2.class.getMethods().length); in test_getMethods()
1285 Cls3.class.getMethods().length); in test_getMethods()
1288 Method[] methods = Cls2.class.getMethods(); in test_getMethods()
1302 methods = Cls3.class.getMethods(); in test_getMethods()
1316 methods = Cls3.class.getMethods(); in test_getMethods()
1333 Intf5.class.getMethods().length); in test_getMethods()
/libcore/luni/src/main/java/java/lang/
DClass.java961 Method[] methods = getClassCache().getMethods(); in getMethod()
988 public Method[] getMethods() throws SecurityException { in getMethods() method in Class
992 Method[] methods = getClassCache().getMethods(); in getMethods()
DClassCache.java164 public Method[] getMethods() { in getMethods() method in ClassCache
/libcore/luni/src/test/java/tests/api/java/lang/reflect/
DMethodTest.java834 Method methods[] = cl.getMethods(); in test_invokeLjava_lang_Object$Ljava_lang_Object()