Home
last modified time | relevance | path

Searched refs:allMethods (Results 1 – 25 of 32) sorted by relevance

12

/external/testng/src/test/java/test/inject/
DSample.java13 ITestNGMethod[] allMethods = tc.getAllTestMethods(); in f() local
14 Assert.assertEquals(allMethods.length, 1); in f()
15 Assert.assertEquals(allMethods[0].getMethod().getName(),"f"); in f()
/external/testng/src/main/java/org/testng/internal/
DMethodGroupsHelper.java155 List<ITestNGMethod> allMethods, in findGroupTransitiveClosure() argument
187 allMethods.toArray(new ITestNGMethod[allMethods.size()]), g); in findGroupTransitiveClosure()
203 ITestNGMethod thisMethod = MethodGroupsHelper.findMethodNamed(tm, allMethods); in findGroupTransitiveClosure()
225 private static ITestNGMethod findMethodNamed(String tm, List<ITestNGMethod> allMethods) { in findMethodNamed() argument
226 for (ITestNGMethod m : allMethods) { in findMethodNamed()
DConfigurationGroupMethods.java38 public ConfigurationGroupMethods(ITestNGMethod[] allMethods, in ConfigurationGroupMethods() argument
42 m_allMethods= allMethods; in ConfigurationGroupMethods()
DIInvoker.java30 ITestNGMethod[] allMethods, in invokeConfigurations() argument
DMethodHelper.java271 List<ITestNGMethod> allMethods, IAnnotationFinder finder) { in sortMethods() argument
274 ITestNGMethod[] allMethodsArray = allMethods.toArray(new ITestNGMethod[allMethods.size()]); in sortMethods()
DXmlMethodSelector.java220 Method[] allMethods = cls.getDeclaredMethods(); in createQualifiedMethodNames() local
222 for (Method m : allMethods) { in createQualifiedMethodNames()
DInvoker.java136 ITestNGMethod[] allMethods, in invokeConfigurations() argument
142 invokeConfigurations(testClass, null, allMethods, suite, params, parameterValues, instance, in invokeConfigurations()
148 ITestNGMethod[] allMethods, in invokeConfigurations() argument
155 if(null == allMethods) { in invokeConfigurations()
161 ITestNGMethod[] methods= filterMethods(testClass, allMethods, SAME_CLASS); in invokeConfigurations()
DUtils.java268 public static void dumpMethods(List<ITestNGMethod> allMethods) { in dumpMethods() argument
270 for (ITestNGMethod tm : allMethods) { in dumpMethods()
/external/doclava/src/com/google/doclava/
DDoclavaDiff.java175 = site.apiInfo().findClass(qualifiedClassName).allMethods(); in generateHdf()
234 Map<String, MethodInfo> allMethods = new HashMap<String, MethodInfo>(); in knownMethodsForClass() local
241 for (Map.Entry<String, MethodInfo> entry: classInfo.allMethods().entrySet()) { in knownMethodsForClass()
242 allMethods.put(entry.getKey(), entry.getValue()); in knownMethodsForClass()
247 methods.addAll(allMethods.values()); in knownMethodsForClass()
DSinceTagger.java211 if (spec.allMethods().containsKey(method.getHashableName())) { in versionMethods()
212 MethodInfo specMethod = spec.allMethods().get(method.getHashableName()); in versionMethods()
224 if (superclass.allMethods().containsKey(method.getHashableName())) { in versionMethods()
DFederationTagger.java155 if (superclass.allMethods().containsKey(method.getHashableName())) { in federateMethods()
DConverter.java407 List<MethodInfo> allMethods = new ArrayList<MethodInfo>(); in convertAllMethods()
410 allMethods.add(methodInfo); in convertAllMethods()
412 return allMethods; in convertAllMethods()
/external/testng/src/main/java/org/testng/junit/
DJUnitMethodFinder.java82 Method[] allMethods = current.getDeclaredMethods(); in privateFindTestMethods() local
83 for(Method allMethod : allMethods) { in privateFindTestMethods()
/external/auto/value/src/main/java/com/google/auto/value/processor/
DEclipseHack.java177 List<ExecutableElement> allMethods = in noArgMethodsIn() local
180 for (ExecutableElement method : allMethods) { in noArgMethodsIn()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/
DResolvedReferenceType.java386 …List<ResolvedMethodDeclaration> allMethods = new LinkedList<>(this.getTypeDeclaration().getDeclare… in getAllMethods() local
388 allMethods.addAll(a.getAllMethods())); in getAllMethods()
389 return allMethods; in getAllMethods()
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/javaparsermodel/declarations/
DJavaParserInterfaceDeclarationTest.java594 Set<ResolvedMethodDeclaration> allMethods = constructorDeclaration.getDeclaredMethods(); in testGetDeclaredMethods() local
595 assertEquals(20, allMethods.size()); in testGetDeclaredMethods()
597 List<ResolvedMethodDeclaration> sortedMethods = allMethods.stream() in testGetDeclaredMethods()
627 Set<MethodUsage> allMethods = constructorDeclaration.getAllMethods(); in testGetAllMethods() local
629 List<MethodUsage> sortedMethods = allMethods.stream() in testGetAllMethods()
DJavaParserEnumDeclarationTest.java592 Set<ResolvedMethodDeclaration> allMethods = constructorDeclaration.getDeclaredMethods(); in testGetDeclaredMethods() local
593 assertEquals(20, allMethods.size()); in testGetDeclaredMethods()
595 List<ResolvedMethodDeclaration> sortedMethods = allMethods.stream() in testGetDeclaredMethods()
625 Set<MethodUsage> allMethods = constructorDeclaration.getAllMethods(); in testGetAllMethods() local
627 List<MethodUsage> sortedMethods = allMethods.stream() in testGetAllMethods()
DJavaParserClassDeclarationTest.java619 Set<ResolvedMethodDeclaration> allMethods = constructorDeclaration.getDeclaredMethods(); in testGetDeclaredMethods() local
620 assertEquals(20, allMethods.size()); in testGetDeclaredMethods()
622 List<ResolvedMethodDeclaration> sortedMethods = allMethods.stream() in testGetDeclaredMethods()
652 Set<MethodUsage> allMethods = constructorDeclaration.getAllMethods(); in testGetAllMethods() local
654 List<MethodUsage> sortedMethods = allMethods.stream() in testGetAllMethods()
/external/oj-libjdwp/src/share/classes/com/sun/jdi/
DReferenceType.java427 List<Method> allMethods(); in allMethods() method
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DArrayTypeImpl.java70 public List<Method> allMethods() { in allMethods() method in ArrayTypeImpl
DInvokableTypeImpl.java206 public final List<Method> allMethods() { in allMethods() method in InvokableTypeImpl
DReferenceTypeImpl.java531 List<Method> list = allMethods(); in visibleMethods()
536 abstract public List<Method> allMethods(); in allMethods() method in ReferenceTypeImpl
/external/dexmaker/dexmaker/src/main/java/com/android/dx/stock/
DProxyBuilder.java483 FieldId<G, Method[]> allMethods = in generateCodeForAllMethods() local
565 code.sget(allMethods, methodArray); in generateCodeForAllMethods()
693 FieldId<G, Method[]> allMethods = generatedType.getField( in generateConstructorsAndFields() local
695 dexMaker.declare(allMethods, PRIVATE | STATIC, null); in generateConstructorsAndFields()
/external/smali/smalidea/src/test/java/org/jf/smalidea/
DSmaliPositionManagerTest.java210 @Override public List<Method> allMethods() { return null; }
/external/javassist/src/main/javassist/util/proxy/
DProxyFactory.java949 Map<String,Method> allMethods = getMethods(superClass, interfaces); in makeSortedMethodList() local
950 signatureMethods = new ArrayList<Map.Entry<String,Method>>(allMethods.entrySet()); in makeSortedMethodList()

12