Home
last modified time | relevance | path

Searched refs:methodNames (Results 1 – 25 of 26) sorted by relevance

12

/external/cronet/stable/third_party/protobuf/php/tests/
DGeneratedServiceTest.php28 private $methodNames = [ variable in GeneratedServiceTest
65 count($this->methodNames), $this->serviceClass->getMethods());
66 foreach ($this->methodNames as $methodName) {
73 foreach ($this->methodNames as $methodName) {
86 foreach ($this->methodNames as $methodName) {
100 foreach ($this->methodNames as $methodName) {
115 foreach ($this->methodNames as $methodName) {
/external/cronet/tot/third_party/protobuf/php/tests/
DGeneratedServiceTest.php28 private $methodNames = [ variable in GeneratedServiceTest
65 count($this->methodNames), $this->serviceClass->getMethods());
66 foreach ($this->methodNames as $methodName) {
73 foreach ($this->methodNames as $methodName) {
86 foreach ($this->methodNames as $methodName) {
100 foreach ($this->methodNames as $methodName) {
115 foreach ($this->methodNames as $methodName) {
/external/protobuf/php/tests/
DGeneratedServiceTest.php28 private $methodNames = [ variable in GeneratedServiceTest
65 count($this->methodNames), $this->serviceClass->getMethods());
66 foreach ($this->methodNames as $methodName) {
73 foreach ($this->methodNames as $methodName) {
86 foreach ($this->methodNames as $methodName) {
100 foreach ($this->methodNames as $methodName) {
115 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/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/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/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/json-schema-validator/src/test/java/com/networknt/schema/
DMaximumValidatorPerfTest.java52 public List<Method> getTestMethods(String[] methodNames) { in getTestMethods() argument
55 if (methodNames.length > 0) { in getTestMethods()
56 for (String name : methodNames) { in getTestMethods()
/external/testng/src/main/java/org/testng/xml/
DLaunchSuite.java245 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/grpc-grpc/src/php/bin/
Dphp_extension_doxygen_filter.awk38 delete methodNames; # i => methodName
114 methodNames[methodsCount++] = method;
178 m = methodNames[i];
/external/angle/src/libANGLE/
DPlatform.cpp31 const char *const methodNames[], in ANGLEGetDisplayPlatform() argument
50 const char *actualName = methodNames[nameIndex]; in ANGLEGetDisplayPlatform()
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/
DMethodFilter.java47 public static MethodFilter nameFilter(String name, String... methodNames) { in nameFilter() argument
49 .named(methodNames) in nameFilter()
50 .expectSize(methodNames.length) in nameFilter()
/external/conscrypt/testing/src/main/java/org/conscrypt/
DMethodFilter.java45 public static MethodFilter nameFilter(String name, String... methodNames) { in nameFilter() argument
47 .named(methodNames) in nameFilter()
48 .expectSize(methodNames.length) in nameFilter()
/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/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-lang/src/main/java/org/apache/commons/lang3/exception/
DExceptionUtils.java132 public static Throwable getCause(final Throwable throwable, String[] methodNames) { in getCause() argument
136 if (methodNames == null) { in getCause()
141 methodNames = CAUSE_METHOD_NAMES; in getCause()
143 …return Stream.of(methodNames).map(m -> getCauseUsingMethodName(throwable, m)).filter(Objects::nonN… in getCause()
/external/auto/value/src/main/java/com/google/auto/value/extension/toprettystring/processor/
DToPrettyStringExtension.java141 private final Set<String> methodNames = new HashSet<>(); field in ToPrettyStringExtension.ToPrettyStringImplementation
148 .forEach(method -> methodNames.add(method.getSimpleName().toString())); in ToPrettyStringImplementation()
275 for (int i = 2; !methodNames.add(methodName); i++) { in newDelegateMethodName()
/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/angle/include/platform/
DPlatformMethods.h317 const char *const methodNames[],
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DCldrUtility.java1164 public static void callMethod(String methodNames, Class<?> cls) { in callMethod() argument
1165 for (String methodName : methodNames.split(",")) { in callMethod()
/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/
DShadowDOM.js1286 var methodNames = [ "addEventListener", "removeEventListener", "dispatchEvent" ];
1289 methodNames.forEach(function(name) {
1370 forwardMethodsToWrapper(constructors, methodNames);
Dwebcomponents.js1327 var methodNames = [ "addEventListener", "removeEventListener", "dispatchEvent" ];
1330 methodNames.forEach(function(name) {
1411 forwardMethodsToWrapper(constructors, methodNames);

12