Home
last modified time | relevance | path

Searched refs:getMethods (Results 1 – 9 of 9) 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()
DOldAndroidClassTest.java141 Method[] methods = ArrayList.class.getMethods(); in testClassGetMethodsNoDupes()
175 Method[] methods = MyInterface.class.getMethods(); in testGetMethodsInterfaces()
178 methods = MyOtherInterface.class.getMethods(); in testGetMethodsInterfaces()
182 methods = MyClass.class.getMethods(); in testGetMethodsInterfaces()
DReflectionTest.java284 Method[] methods = ExtendsImplementsDefinesMember.class.getMethods(); in testGetMethodsViaExtendsThenImplements()
289 Method[] methods = ImplementsExtendsDefinesMember.class.getMethods(); in testGetMethodsViaImplementsThenExtends()
294 Method[] methods = ExtendsAndImplementsDefinesMember.class.getMethods(); in testGetMethodsContainsNoDuplicates()
/libcore/harmony-tests/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/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DClassTest.java374 Method[] m = TestClass.class.getMethods(); in test_getMethods()
376 2 + Object.class.getMethods().length, m.length); in test_getMethods()
377 m = SubTestClass.class.getMethods(); in test_getMethods()
379 2 + Object.class.getMethods().length, m.length); in test_getMethods()
/libcore/luni/src/test/java/libcore/java/lang/
DOldClassTest.java830 Cls2.class.getMethods().length); in test_getMethods()
832 Cls3.class.getMethods().length); in test_getMethods()
835 Method[] methods = Cls2.class.getMethods(); in test_getMethods()
848 methods = Cls3.class.getMethods(); in test_getMethods()
861 methods = Cls3.class.getMethods(); in test_getMethods()
877 Intf5.class.getMethods().length); in test_getMethods()
/libcore/libart/src/main/java/java/lang/reflect/
DProxy.java165 List<Method> methods = getMethods(interfaces); in getProxyClass()
278 private static List<Method> getMethods(Class<?>[] interfaces) { in getMethods() method in Proxy
/libcore/libart/src/main/java/java/lang/
DClass.java700 public Method[] getMethods() { in getMethods() method in Class
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
DMethodTest.java707 Method methods[] = cl.getMethods(); in test_invokeLjava_lang_Object$Ljava_lang_Object()