Home
last modified time | relevance | path

Searched refs:each (Results 1 – 25 of 2298) sorted by relevance

12345678910>>...92

/external/junit/src/org/junit/runner/notification/
DRunNotifier.java49 abstract protected void notifyListener(RunListener each) throws Exception; in notifyListener() argument
58 protected void notifyListener(RunListener each) throws Exception { in fireTestRunStarted() argument
59 each.testRunStarted(description); in fireTestRunStarted()
70 protected void notifyListener(RunListener each) throws Exception { in fireTestRunFinished() argument
71 each.testRunFinished(result); in fireTestRunFinished()
86 protected void notifyListener(RunListener each) throws Exception { in fireTestStarted() argument
87 each.testStarted(description); in fireTestStarted()
99 protected void notifyListener(RunListener each) throws Exception { in fireTestFailure() argument
100 each.testFailure(failure); in fireTestFailure()
116 protected void notifyListener(RunListener each) throws Exception { in fireTestAssumptionFailed() argument
[all …]
/external/junit/src/org/junit/internal/runners/
DMethodValidator.java71 for (Method each : methods) { in validateTestMethods()
72 if (Modifier.isStatic(each.getModifiers()) != isStatic) { in validateTestMethods()
74 fErrors.add(new Exception("Method " + each.getName() + "() " in validateTestMethods()
77 if (!Modifier.isPublic(each.getDeclaringClass().getModifiers())) in validateTestMethods()
78 fErrors.add(new Exception("Class " + each.getDeclaringClass().getName() in validateTestMethods()
80 if (!Modifier.isPublic(each.getModifiers())) in validateTestMethods()
81 fErrors.add(new Exception("Method " + each.getName() in validateTestMethods()
83 if (each.getReturnType() != Void.TYPE) in validateTestMethods()
84 fErrors.add(new Exception("Method " + each.getName() in validateTestMethods()
86 if (each.getParameterTypes().length != 0) in validateTestMethods()
[all …]
/external/junit/src/org/junit/experimental/max/
DMaxCore.java104 for (Description each : leaves) in constructLeafRequest()
105 runners.add(buildRunner(each)); in constructLeafRequest()
118 private Runner buildRunner(Description each) {
119 if (each.toString().equals("TestSuite with 0 tests"))
121 if (each.toString().startsWith(MALFORMED_JUNIT_3_TEST_CLASS_PREFIX))
126 return new JUnit38ClassRunner(new TestSuite(getMalformedTestClass(each)));
127 Class<?> type= each.getTestClass();
129 throw new RuntimeException("Can't build a runner from description [" + each + "]");
130 String methodName= each.getMethodName();
136 private Class<?> getMalformedTestClass(Description each) {
[all …]
/external/junit/src/org/junit/experimental/categories/
DCategories.java104 for (Description each : description.getChildren()) in shouldRun()
105 if (shouldRun(each)) in shouldRun()
114 for (Class<?> each : categories) in hasCorrectCategoryAnnotation()
115 if (fExcluded != null && fExcluded.isAssignableFrom(each)) in hasCorrectCategoryAnnotation()
117 for (Class<?> each : categories) in hasCorrectCategoryAnnotation()
118 if (fIncluded == null || fIncluded.isAssignableFrom(each)) in hasCorrectCategoryAnnotation()
172 for (Description each : description.getChildren()) in assertNoCategorizedDescendentsOfUncategorizeableParents()
173 assertNoCategorizedDescendentsOfUncategorizeableParents(each); in assertNoCategorizedDescendentsOfUncategorizeableParents()
177 for (Description each : description.getChildren()) { in assertNoDescendantsHaveCategoryAnnotations()
178 if (each.getAnnotation(Category.class) != null) in assertNoDescendantsHaveCategoryAnnotations()
[all …]
/external/doclava/res/assets/templates/
Ddiff.cs127 <?cs each:site = sites ?>
129 <?cs /each ?>
131 <?cs each:package = packages ?>
140 <?cs each:site = package.sites ?>
148 <?cs /each ?>
151 <?cs each:class = package.classes ?>
160 <?cs each:site = class.sites ?>
168 <?cs /each ?>
170 <?cs each:method = class.methods ?>
174 <?cs each:site = method.sites ?>
[all …]
Dmacros.cs30 each:t=type.extendsBounds ?><?cs
33 /each ?><?cs
36 each:t=type.superBounds ?><?cs
39 /each ?><?cs
42 ?>&lt;<?cs each:t=type.typeArguments ?><?cs call:type_link_impl(t, "true") ?><?cs
44 /each ?>&gt;<?cs
56 each:t=type.typeArguments?><?cs
60 /each ?>&gt;<?cs
82 each:param = params ?><?cs
86 /each ?><?cs
[all …]
Dclass.cs13 <?cs each:cl=class.inherited ?>
26 <?cs /each ?>
104 <?cs each:supr = class.inheritance ?>
110 <?cs each:t=supr.interfaces ?>
112 <?cs /each ?>
115 <?cs /each ?>
124 <?cs each:supr = class.inheritance ?>
137 <?cs /each ?>
161 <?cs if:subcount(class.annotationdocumentation) ?><?cs each:annodoc = class.annotationdocumentation…
163 <?cs /each ?><?cs /if ?>
[all …]
Dkeywords.cs14 <div class="jd-letterlist"><?cs each:letter=keywords ?>
15 <a href="#letter_<?cs name:letter ?>"><?cs name:letter ?></a><?cs /each?>
18 <?cs each:letter=keywords ?>
22 <?cs each:entry=letter
25 <?cs /each
28 <?cs /each ?>
Dclasses.cs15 <div class="jd-letterlist"><?cs each:letter=docs.classes ?>
16 <a href="#letter_<?cs name:letter ?>"><?cs name:letter ?></a><?cs /each?>
19 <?cs each:letter=docs.classes ?>
24 <?cs each:cl = letter ?>
30 <?cs /each ?>
32 <?cs /each ?>
Dtodo.cs49 <?cs each:pkg=packages ?>
56 <?cs /each ?>
69 <?cs each:cl=classes ?>
76 <?cs /each ?>
81 <?cs each:cl=classes ?>
87 <?cs each:err=cl.errors ?>
93 <?cs /each ?>
96 <?cs /each ?>
Dsampleindex.cs25 <?cs each:dir=subdirs ?>
28 <?cs /each ?>
35 <?cs each:file=files ?>
38 <?cs /each ?>
/external/junit/src/org/junit/runners/model/
DNoGenericTypeParametersValidator.java19 for (Type each : fMethod.getGenericParameterTypes()) in validate()
20 validateNoTypeParameterOnType(each, errors); in validate()
37 for (Type each : parameterized.getActualTypeArguments()) in validateNoTypeParameterOnParameterizedType()
38 validateNoTypeParameterOnType(each, errors); in validateNoTypeParameterOnParameterizedType()
43 for (Type each : wildcard.getUpperBounds()) in validateNoTypeParameterOnWildcardType()
44 validateNoTypeParameterOnType(each, errors); in validateNoTypeParameterOnWildcardType()
45 for (Type each : wildcard.getLowerBounds()) in validateNoTypeParameterOnWildcardType()
46 validateNoTypeParameterOnType(each, errors); in validateNoTypeParameterOnWildcardType()
/external/junit/src/junit/framework/
DTestSuite.java149 for (Method each : superClass.getDeclaredMethods())
150 addTestMethod(each, names, theClass);
178 for (Class<?> each : classes)
179 addTest(testCaseForClass(each));
182 private Test testCaseForClass(Class<?> each) {
183 if (TestCase.class.isAssignableFrom(each))
184 return new TestSuite(each.asSubclass(TestCase.class));
186 return warning(each.getCanonicalName() + " does not extend TestCase");
217 for (Test each : fTests)
218 count+= each.countTestCases();
[all …]
DTestResult.java42 for (TestListener each : cloneListeners()) in addError()
43 each.addError(test, t); in addError()
51 for (TestListener each : cloneListeners()) in addFailure()
52 each.addFailure(test, t); in addFailure()
78 for (TestListener each : cloneListeners()) in endTest()
79 each.endTest(test); in endTest()
159 for (TestListener each : cloneListeners()) in startTest()
160 each.startTest(test); in startTest()
/external/junit/src/org/junit/experimental/theories/
DParameterSignature.java72 for (Annotation each : annotations) { in findDeepAnnotation()
73 if (annotationType.isInstance(each)) in findDeepAnnotation()
74 return annotationType.cast(each); in findDeepAnnotation()
75 Annotation candidate= findDeepAnnotation(each.annotationType() in findDeepAnnotation()
85 for (Annotation each : getAnnotations()) in getAnnotation()
86 if (annotationType.isInstance(each)) in getAnnotation()
87 return annotationType.cast(each); in getAnnotation()
DTheories.java37 for (Field each : fields) in validateDataPointFields()
38 if (each.getAnnotation(DataPoint.class) != null && !Modifier.isStatic(each.getModifiers())) in validateDataPointFields()
39 errors.add(new Error("DataPoint field " + each.getName() + " must be static")); in validateDataPointFields()
49 for (FrameworkMethod each : computeTestMethods()) in validateTestMethods()
50 if(each.getAnnotation(Theory.class) != null) in validateTestMethods()
51 each.validatePublicVoid(false, errors); in validateTestMethods()
53 each.validatePublicVoidNoArg(false, errors); in validateTestMethods()
/external/curl/tests/data/
Dtest53214 file contents should appear once for each file
17 file contents should appear once for each file
18 file contents should appear once for each file
19 file contents should appear once for each file
20 file contents should appear once for each file
33 FTP RETR same file using reset handles between each transfer
Dtest52614 file contents should appear once for each file
17 file contents should appear once for each file
18 file contents should appear once for each file
19 file contents should appear once for each file
20 file contents should appear once for each file
Dtest52714 file contents should appear once for each file
17 file contents should appear once for each file
18 file contents should appear once for each file
19 file contents should appear once for each file
20 file contents should appear once for each file
Dtest52818 file contents should appear once for each file
21 file contents should appear once for each file
22 file contents should appear once for each file
23 file contents should appear once for each file
24 file contents should appear once for each file
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/static/
Dforms.js157 $.each(form.descriptor.values, function(index, enumValue) {
325 $.each(messageType.fields, function(index, field) {
373 $.each(value, function(index, item) {
379 $.each(value, function(name, item) {
400 $.each(form.fields, function(index, subForm) {
447 $.each(form.fields, function(index, subForm) {
504 $.each(service.methods, function(index, method) {
576 $.each(serviceMap, function(serviceName) {
580 $.each(descriptor.methods, function(index, method) {
606 $.each(messages, function(messageIndex, message) {
[all …]
/external/junit/src/org/junit/internal/
DTextListener.java68 for (Failure each : failures) in printFailures()
69 printFailure(each, "" + i++); in printFailures()
72 protected void printFailure(Failure each, String prefix) { in printFailure() argument
73 getWriter().println(prefix + ") " + each.getTestHeader()); in printFailure()
74 getWriter().print(each.getTrace()); in printFailure()
/external/junit/src/org/junit/runner/
DJUnitCore.java87 for (String each : args) in runMain()
89 classes.add(Class.forName(each)); in runMain()
91 system.out().println("Could not find class: " + each); in runMain()
92 Description description= Description.createSuiteDescription(each); in runMain()
99 for (Failure each : missingClasses) in runMain()
100 result.getFailures().add(each); in runMain()
/external/junit/src/org/junit/runners/
DParentRunner.java228 for (final T each : getFilteredChildren())
231 ParentRunner.this.runChild(each, notifier);
316 T each = iter.next();
317 if (shouldRun(filter, each))
319 filter.apply(each);
333 for (T each : getFilteredChildren())
334 sortChild(each);
359 private boolean shouldRun(Filter filter, T each) {
360 return filter.shouldRun(describeChild(each));
/external/junit/src/org/junit/internal/builders/
DSuiteMethodBuilder.java12 public Runner runnerForClass(Class<?> each) throws Throwable { in runnerForClass() argument
13 if (hasSuiteMethod(each)) in runnerForClass()
14 return new SuiteMethod(each); in runnerForClass()

12345678910>>...92