Home
last modified time | relevance | path

Searched full:methodnames (Results 1 – 25 of 33) sorted by relevance

12

/external/protobuf/php/tests/
Dgenerated_service_test.php28 private $methodNames = [ variable in GeneratedServiceTest
59 $this->assertCount(count($this->methodNames), $this->serviceClass->getMethods());
60 foreach ($this->methodNames as $methodName) {
67 foreach ($this->methodNames as $methodName) {
77 foreach ($this->methodNames as $methodName) {
87 foreach ($this->methodNames as $methodName) {
100 foreach ($this->methodNames as $methodName) {
/external/vogar/src/vogar/target/junit/
DJUnitUtils.java58 Set<String> methodNames = new LinkedHashSet<>(); in mergeQualificationAndArgs() local
60 methodNames.add(qualification); in mergeQualificationAndArgs()
62 Collections.addAll(methodNames, args); in mergeQualificationAndArgs()
63 return methodNames; in mergeQualificationAndArgs()
/external/junit/src/main/java/org/junit/experimental/theories/internal/
DSpecificDataPointsSupplier.java64 String[] methodNames = method.getAnnotation(DataPoint.class).value(); in getSingleDataPointMethods() local
65 if (Arrays.asList(methodNames).contains(requestedName)) { in getSingleDataPointMethods()
81 String[] methodNames = method.getAnnotation(DataPoints.class).value(); in getDataPointsMethods() local
82 if (Arrays.asList(methodNames).contains(requestedName)) { in getDataPointsMethods()
/external/testng/src/test/java/test/annotationtransformer/
DMyTransformer.java13 private final List<String> methodNames = new ArrayList<>(); field in MyTransformer
31 methodNames.add(testMethod.getName()); in transform()
36 return methodNames; in getMethodNames()
/external/testng/src/main/java/org/testng/xml/
DLaunchSuite.java238 * @param methodNames
245 final Collection<String> methodNames, in MethodsSuite() argument
252 m_methodNames = methodNames; in MethodsSuite()
325 Collection<String> methodNames= sanitize(entry.getValue()); in initContentBuffer() local
326 if ((null != methodNames) && (methodNames.size() > 0)) { in initContentBuffer()
331 for (String methodName : methodNames) { in initContentBuffer()
DSuiteGenerator.java59 Collection<String> methodNames, Collection<String> groupNames, in createCustomizedSuite() argument
69 return new LaunchSuite.MethodsSuite(projectName, classNames.iterator().next(), methodNames, in createCustomizedSuite()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
DMethodsTest.java80 String methodNames[] = { in testMethods001() local
111 int expectedMetodsNumber = methodNames.length; in testMethods001()
130 if ( ! methodNames[k].equals(returnedMethodName)) { in testMethods001()
190 logWriter.println("## Method name = " + methodNames[k]); in testMethods001()
194 " name = " + methodNames[k]; in testMethods001()
DMethodsWithGenericTest.java81 String methodNames[] = { in testMethodsWithGeneric001() local
120 int expectedMetodsNumber = methodNames.length; in testMethodsWithGeneric001()
140 if ( ! methodNames[k].equals(returnedMethodName)) { in testMethodsWithGeneric001()
217 logWriter.println("## Method name = " + methodNames[k]); in testMethodsWithGeneric001()
221 " name = " + methodNames[k]; in testMethodsWithGeneric001()
/external/testng/src/test/java/test/
DSimpleBaseTest.java100 protected void verifyPassedTests(TestListenerAdapter tla, String... methodNames) { in verifyPassedTests() argument
102 Assert.assertEquals(tla.getPassedTests().size(), methodNames.length); in verifyPassedTests()
106 Assert.assertEquals(it.next().getName(), methodNames[i++]); in verifyPassedTests() local
/external/python/cpython2/Lib/test/
Dtest_profile.py16 methodnames = ['print_stats', 'print_callers', 'print_callees'] variable in ProfileTest
27 for methodname in cls.methodnames:
38 for i, method in enumerate(self.methodnames):
77 for i, method in enumerate(cls.methodnames):
/external/angle/src/libANGLE/
DPlatform.cpp31 const char *const methodNames[], in ANGLEGetDisplayPlatform() argument
50 const char *actualName = methodNames[nameIndex]; in ANGLEGetDisplayPlatform()
/external/python/cpython3/Lib/test/
Dtest_profile.py21 methodnames = ['print_stats', 'print_callers', 'print_callees'] variable in ProfileTest
37 for methodname in cls.methodnames:
56 for i, method in enumerate(self.methodnames):
144 for i, method in enumerate(cls.methodnames):
/external/testng/src/main/java/org/testng/reporters/
DFailedReporter.java215 List<XmlInclude> methodNames= Lists.newArrayList(methodList.size()); in createXmlClasses() local
218 methodNames.add(new XmlInclude(m.getMethod().getName(), m.getFailedInvocationNumbers(), in createXmlClasses()
221 xmlClass.setIncludedMethods(methodNames); in createXmlClasses()
DSuiteHTMLReporter.java521 StringBuffer methodNames = new StringBuffer(); in generateMethodsAndGroups() local
527 methodNames.append(tm.toString()).append("<br/>"); in generateMethodsAndGroups()
529 sb.append("<td>" + methodNames.toString() + "</td></tr>\n"); in generateMethodsAndGroups()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/
DVerifierAppFrame.java295 final String[] methodnames = new String[jc.getMethods().length]; in verify() local
297 methodnames[i] = jc.getMethods()[i].toString().replace('\n', ' ').replace('\t', in verify()
300 pass3aJList.setListData(methodnames); in verify()
302 pass3bJList.setListData(methodnames); in verify()
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h699 MethodNames.push_back(Name); in VFTableRecord()
700 MethodNames.insert(MethodNames.end(), Methods.begin(), Methods.end()); in VFTableRecord()
706 StringRef getName() const { return makeArrayRef(MethodNames).front(); } in getName()
709 return makeArrayRef(MethodNames).drop_front(); in getMethodNames()
715 std::vector<StringRef> MethodNames; variable
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h705 MethodNames.push_back(Name); in VFTableRecord()
706 MethodNames.insert(MethodNames.end(), Methods.begin(), Methods.end()); in VFTableRecord()
712 StringRef getName() const { return makeArrayRef(MethodNames).front(); } in getName()
715 return makeArrayRef(MethodNames).drop_front(); in getMethodNames()
721 std::vector<StringRef> MethodNames; variable
/external/skqp/tools/bookmaker/
DselfCheck.cpp118 vector<string> methodNames; in checkRelatedFunctions() local
/external/guice/core/test/com/google/inject/spi/
DInjectionPointTest.java366 Iterable<InjectionPoint> points, Class<?> clazz, String... methodNames) { in assertPoints() argument
373 assertEquals(points.toString(), ImmutableSet.copyOf(methodNames), methods); in assertPoints()
/external/llvm-project/lld/test/COFF/
Dpdb-thunk.yaml2070 MethodNames:
2078 MethodNames:
2086 MethodNames:
2094 MethodNames:
/external/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h850 VFPtrOffset(VFPtrOffset), Name(Name), MethodNames(Methods) {} in VFTableRecord()
866 return MethodNames; in getMethodNames()
884 std::vector<StringRef> MethodNames; variable
/external/llvm-project/llvm/tools/llvm-pdbutil/
DMinimalTypeDumper.cpp385 if (!VFT.MethodNames.empty()) { in visitKnownRecord()
390 P.print(join(VFT.MethodNames, Sep)); in visitKnownRecord()
/external/oj-libjdwp/src/share/back/
Derror_messages.c38 * include classnames, methodnames, signatures, or other pieces
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DTypeRecordMapping.cpp486 for (auto Name : Record.MethodNames) in visitKnownRecord()
491 Record.MethodNames, in visitKnownRecord()
/external/llvm-project/llvm/lib/DebugInfo/CodeView/
DTypeRecordMapping.cpp487 for (auto Name : Record.MethodNames) in visitKnownRecord()
492 Record.MethodNames, in visitKnownRecord()

12