/external/protobuf/php/tests/ |
D | generated_service_test.php | 28 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/ |
D | JUnitUtils.java | 58 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/ |
D | SpecificDataPointsSupplier.java | 64 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/ |
D | MyTransformer.java | 13 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/ |
D | LaunchSuite.java | 238 * @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()
|
D | SuiteGenerator.java | 59 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/ |
D | MethodsTest.java | 80 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()
|
D | MethodsWithGenericTest.java | 81 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/ |
D | SimpleBaseTest.java | 100 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/ |
D | test_profile.py | 16 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/ |
D | Platform.cpp | 31 const char *const methodNames[], in ANGLEGetDisplayPlatform() argument 50 const char *actualName = methodNames[nameIndex]; in ANGLEGetDisplayPlatform()
|
/external/python/cpython3/Lib/test/ |
D | test_profile.py | 21 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/ |
D | FailedReporter.java | 215 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()
|
D | SuiteHTMLReporter.java | 521 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/ |
D | VerifierAppFrame.java | 295 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/ |
D | TypeRecord.h | 699 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/ |
D | TypeRecord.h | 705 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/ |
D | selfCheck.cpp | 118 vector<string> methodNames; in checkRelatedFunctions() local
|
/external/guice/core/test/com/google/inject/spi/ |
D | InjectionPointTest.java | 366 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/ |
D | pdb-thunk.yaml | 2070 MethodNames: 2078 MethodNames: 2086 MethodNames: 2094 MethodNames:
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeRecord.h | 850 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/ |
D | MinimalTypeDumper.cpp | 385 if (!VFT.MethodNames.empty()) { in visitKnownRecord() 390 P.print(join(VFT.MethodNames, Sep)); in visitKnownRecord()
|
/external/oj-libjdwp/src/share/back/ |
D | error_messages.c | 38 * include classnames, methodnames, signatures, or other pieces
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | TypeRecordMapping.cpp | 486 for (auto Name : Record.MethodNames) in visitKnownRecord() 491 Record.MethodNames, in visitKnownRecord()
|
/external/llvm-project/llvm/lib/DebugInfo/CodeView/ |
D | TypeRecordMapping.cpp | 487 for (auto Name : Record.MethodNames) in visitKnownRecord() 492 Record.MethodNames, in visitKnownRecord()
|