Searched refs:getMethods (Results 1 – 12 of 12) sorted by relevance
38 Method[] methods = Class.forName("java.lang.String").getMethods(); in test_constructorLjava_lang_reflect_MethodLjava_lang_String()
141 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()
290 Method[] methods = ExtendsImplementsDefinesMember.class.getMethods(); in testGetMethodsViaExtendsThenImplements()295 Method[] methods = ImplementsExtendsDefinesMember.class.getMethods(); in testGetMethodsViaImplementsThenExtends()300 Method[] methods = ExtendsAndImplementsDefinesMember.class.getMethods(); in testGetMethodsContainsNoDuplicates()
381 Method[] m = TestClass.class.getMethods(); in test_getMethods()383 2 + Object.class.getMethods().length, m.length); in test_getMethods()384 m = SubTestClass.class.getMethods(); in test_getMethods()386 2 + Object.class.getMethods().length, m.length); in test_getMethods()
890 Cls2.class.getMethods().length); in test_getMethods()892 Cls3.class.getMethods().length); in test_getMethods()895 Method[] methods = Cls2.class.getMethods(); in test_getMethods()908 methods = Cls3.class.getMethods(); in test_getMethods()921 methods = Cls3.class.getMethods(); in test_getMethods()937 Intf5.class.getMethods().length); in test_getMethods()
678 List<Method> methods = getMethods(interfaces); in apply()776 private static List<Method> getMethods(Class<?>[] interfaces) { in getMethods() method in Proxy
67 private static java.util.List<java.lang.reflect.Method> getMethods( in getMethods() method in Proxy
122 public java.lang.reflect.Method[] getMethods() throws java.lang.SecurityException { throw new Runti… in getMethods() method in Class
120 public java.lang.reflect.@libcore.util.NonNull Method @libcore.util.NonNull [] getMethods() throws … in getMethods() method in Class
211 public java.lang.reflect.Method[] getMethods() throws java.lang.SecurityException { in getMethods() method in Class
707 Method methods[] = cl.getMethods(); in test_invokeLjava_lang_Object$Ljava_lang_Object()
3736 .flatMap((klazz) -> (Stream<Method>) Stream.of(klazz.getMethods())) in testMinimalCompletionStage_minimality()3750 List<Method> allMethods = Stream.of(CompletableFuture.class.getMethods()) in testMinimalCompletionStage_minimality()