Home
last modified time | relevance | path

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

12345678910>>...48

/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 …]
DErrorReportingRunner.java26 for (Throwable each : fCauses) in getDescription()
27 description.addChild(describeCause(each)); in getDescription()
33 for (Throwable each : fCauses) in run()
34 runCause(each, notifier); in run()
/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/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/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.cs99 /each ?><?cs
137 each:tag=also ?><li><?cs
144 /each ?>
160 <?cs each:federated=obj.federated ?>
163 <?cs /each ?>
176 each:attr=obj.attrRefs ?>
178 /each ?>
186 each:tag=obj.paramTags ?>
192 /each ?>
206 each:tag=obj.throws ?>
[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 ?>
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 ?>
172 <?cs each:method = methods ?>
190 <?cs /each ?>
[all …]
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 ?>
Dhierarchy.cs26 <?cs each:cl = classes ?>
37 <?cs each:iface = cl.interfaces ?>
43 <?cs /each ?>
48 <?cs /each ?>
Dyaml_navtree.cs16 each:child = page.children?>
23 /each ?><?cs
33 toc:<?cs each:page = docs.pages?><?cs
40 /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/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()
/external/llvm/lib/Target/MBlaze/
DMBlazeSchedule3.td18 // The instruction takes one cycle to execute in each of the stages. The
31 // operand. The instruction takes one cycle to execute in each of the
44 // operands. The instruction takes one cycle to execute in each the pipeline
58 // The instruction takes one cycle to execute in each of the pipeline stages
71 // one cycle to execute in each of the pipeline stages. The source operand is
80 // instruction takes one cycle to execute in each of the pipeline stages. The
90 // operand register. The instruction takes one cycle to execute in each of
101 // instruction takes one cycle to execute in each of the pipeline stages
112 // operand registers. The instruction takes one cycle to execute in each of
126 // each of the pipeline stages except the execute stage, which takes 30
[all …]
/external/llvm/docs/CommandGuide/
Dllvm-link.rst17 directory. If that fails, it looks for each file in each of the directories
19 paths are global; each one is searched for every input file if necessary. The
61 This typically includes a message for each bitcode file linked in and for each

12345678910>>...48