Home
last modified time | relevance | path

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

12345678910>>...118

/external/ltp/runtest/
Dcontrollers48 cgroup_fj_stress_debug_2_2_each cgroup_fj_stress.sh debug 2 2 each
49 cgroup_fj_stress_debug_3_3_each cgroup_fj_stress.sh debug 3 3 each
50 cgroup_fj_stress_debug_4_4_each cgroup_fj_stress.sh debug 4 4 each
51 cgroup_fj_stress_debug_2_9_each cgroup_fj_stress.sh debug 2 9 each
52 cgroup_fj_stress_debug_10_3_each cgroup_fj_stress.sh debug 10 3 each
53 cgroup_fj_stress_debug_1_200_each cgroup_fj_stress.sh debug 1 200 each
54 cgroup_fj_stress_debug_200_1_each cgroup_fj_stress.sh debug 200 1 each
73 cgroup_fj_stress_cpuset_2_2_each cgroup_fj_stress.sh cpuset 2 2 each
74 cgroup_fj_stress_cpuset_3_3_each cgroup_fj_stress.sh cpuset 3 3 each
75 cgroup_fj_stress_cpuset_4_4_each cgroup_fj_stress.sh cpuset 4 4 each
[all …]
/external/junit/src/main/java/org/junit/runner/notification/
DRunNotifier.java81 abstract protected void notifyListener(RunListener each) throws Exception; in notifyListener() argument
90 protected void notifyListener(RunListener each) throws Exception { in fireTestRunStarted() argument
91 each.testRunStarted(description); in fireTestRunStarted()
102 protected void notifyListener(RunListener each) throws Exception { in fireTestRunFinished() argument
103 each.testRunFinished(result); in fireTestRunFinished()
120 protected void notifyListener(RunListener each) throws Exception { in fireTestStarted() argument
121 each.testStarted(description); in fireTestStarted()
141 for (Failure each : failures) { in fireTestFailures()
142 listener.testFailure(each); in fireTestFailures()
159 protected void notifyListener(RunListener each) throws Exception { in fireTestAssumptionFailed() argument
[all …]
/external/junit/src/main/java/org/junit/internal/runners/
DMethodValidator.java73 for (Method each : methods) { in validateTestMethods()
74 if (Modifier.isStatic(each.getModifiers()) != isStatic) { in validateTestMethods()
76 errors.add(new Exception("Method " + each.getName() + "() " in validateTestMethods()
79 if (!Modifier.isPublic(each.getDeclaringClass().getModifiers())) { in validateTestMethods()
80 errors.add(new Exception("Class " + each.getDeclaringClass().getName() in validateTestMethods()
83 if (!Modifier.isPublic(each.getModifiers())) { in validateTestMethods()
84 errors.add(new Exception("Method " + each.getName() in validateTestMethods()
87 if (each.getReturnType() != Void.TYPE) { in validateTestMethods()
88 errors.add(new Exception("Method " + each.getName() in validateTestMethods()
91 if (each.getParameterTypes().length != 0) { in validateTestMethods()
[all …]
/external/junit/src/main/java/org/junit/experimental/max/
DMaxCore.java107 for (Description each : leaves) { in constructLeafRequest()
108 runners.add(buildRunner(each)); in constructLeafRequest()
123 private Runner buildRunner(Description each) {
124 if (each.toString().equals("TestSuite with 0 tests")) {
127 if (each.toString().startsWith(MALFORMED_JUNIT_3_TEST_CLASS_PREFIX)) {
132 return new JUnit38ClassRunner(new TestSuite(getMalformedTestClass(each)));
134 Class<?> type = each.getTestClass();
136 throw new RuntimeException("Can't build a runner from description [" + each + "]");
138 String methodName = each.getMethodName();
145 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.cs37 each:t=type.extendsBounds ?><?cs
40 /each ?><?cs
43 each:t=type.superBounds ?><?cs
46 /each ?><?cs
49 ?>&lt;<?cs each:t=type.typeArguments ?><?cs call:type_link_impl(t, "true") ?><?cs
51 /each ?>&gt;<?cs
63 each:t=type.typeArguments?><?cs
67 /each ?>&gt;<?cs
89 each:param = params ?><?cs
93 /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/main/java/org/junit/runners/model/
DNoGenericTypeParametersValidator.java19 for (Type each : method.getGenericParameterTypes()) { in validate()
20 validateNoTypeParameterOnType(each, errors); in validate()
39 for (Type each : parameterized.getActualTypeArguments()) { in validateNoTypeParameterOnParameterizedType()
40 validateNoTypeParameterOnType(each, errors); in validateNoTypeParameterOnParameterizedType()
46 for (Type each : wildcard.getUpperBounds()) { in validateNoTypeParameterOnWildcardType()
47 validateNoTypeParameterOnType(each, errors); in validateNoTypeParameterOnWildcardType()
49 for (Type each : wildcard.getLowerBounds()) { in validateNoTypeParameterOnWildcardType()
50 validateNoTypeParameterOnType(each, errors); in validateNoTypeParameterOnWildcardType()
/external/junit/src/main/java/junit/framework/
DTestSuite.java149 for (Method each : MethodSorter.getDeclaredMethods(superClass)) {
150 addTestMethod(each, names, theClass);
182 for (Class<?> each : classes) {
183 addTest(testCaseForClass(each));
187 private Test testCaseForClass(Class<?> each) {
188 if (TestCase.class.isAssignableFrom(each)) {
189 return new TestSuite(each.asSubclass(TestCase.class));
191 return warning(each.getCanonicalName() + " does not extend TestCase");
224 for (Test each : fTests) {
225 count += each.countTestCases();
[all …]
DTestResult.java38 for (TestListener each : cloneListeners()) { in addError()
39 each.addError(test, e); in addError()
49 for (TestListener each : cloneListeners()) { in addFailure()
50 each.addFailure(test, e); in addFailure()
81 for (TestListener each : cloneListeners()) { in endTest()
82 each.endTest(test); in endTest()
167 for (TestListener each : cloneListeners()) { in startTest()
168 each.startTest(test); in startTest()
/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/doclava/res/assets/templates-sdk/
Dclass.cs15 <?cs each:method = methods ?>
40 <?cs /each ?>
47 <?cs each:field=fields ?>
61 <?cs /each ?>
68 <?cs each:field=fields ?>
78 <?cs /each ?>
85 <?cs each:attr=attrs ?>
95 <?cs /each ?>
102 <?cs each:cl=class.inners ?>
117 <?cs /each ?>
[all …]
Dclasses.cs15 each:letter=docs.classes ?>
18 /each?>
21 <?cs each:letter=docs.classes ?>
26 <?cs each:cl = letter ?>
35 <?cs /each ?>
37 <?cs /each ?>
/external/junit/src/main/java/org/junit/experimental/theories/
DParameterSignature.java112 for (Annotation each : annotations) { in findDeepAnnotation()
113 if (annotationType.isInstance(each)) { in findDeepAnnotation()
114 return annotationType.cast(each); in findDeepAnnotation()
116 Annotation candidate = findDeepAnnotation(each.annotationType() in findDeepAnnotation()
127 for (Annotation each : getAnnotations()) { in getAnnotation()
128 if (annotationType.isInstance(each)) { in getAnnotation()
129 return annotationType.cast(each); in getAnnotation()
/external/junit/src/main/java/org/junit/runners/
DParentRunner.java133 for (TestClassValidator each : VALIDATORS) { in applyValidators()
134 errors.addAll(each.validateTestClass(getTestClass())); in applyValidators()
287 for (final T each : getFilteredChildren()) {
290 ParentRunner.this.runChild(each, notifier);
381 T each = iter.next();
382 if (shouldRun(filter, each)) {
384 filter.apply(each);
401 for (T each : getFilteredChildren()) {
402 sorter.apply(each);
433 private boolean shouldRun(Filter filter, T each) {
[all …]
/external/junit/src/main/java/org/junit/internal/
DTextListener.java70 for (Failure each : failures) { in printFailures()
71 printFailure(each, "" + i++); in printFailures()
75 protected void printFailure(Failure each, String prefix) { in printFailure() argument
76 getWriter().println(prefix + ") " + each.getTestHeader()); in printFailure()
77 getWriter().print(each.getTrace()); in printFailure()
/external/junit/src/main/java/org/junit/experimental/categories/
DCategories.java198 for (Description each : description.getChildren()) { in shouldRun()
199 if (shouldRun(each)) { in shouldRun()
345 for (Description each : description.getChildren()) { in assertNoCategorizedDescendentsOfUncategorizeableParents()
346 assertNoCategorizedDescendentsOfUncategorizeableParents(each); in assertNoCategorizedDescendentsOfUncategorizeableParents()
351 for (Description each : description.getChildren()) { in assertNoDescendantsHaveCategoryAnnotations()
352 if (each.getAnnotation(Category.class) != null) { in assertNoDescendantsHaveCategoryAnnotations()
355 assertNoDescendantsHaveCategoryAnnotations(each); in assertNoDescendantsHaveCategoryAnnotations()
361 for (Description each : description.getChildren()) { in canHaveCategorizedChildren()
362 if (each.getTestClass() == null) { in canHaveCategorizedChildren()
/external/gemmlowp/doc/
Dlow-precision.md40 - A int32 lhs_offset, that will be added to each entry of the lhs matrix.
41 - A int32 rhs_offset, that will be added to each entry of the rhs matrix.
46 1. Cast lhs entries from uint8 to int32 and add lhs_offset to each of them.
47 2. Cast rhs entries from uint8 to int32 and add rhs_offset to each of them.
70 1. Cast lhs entries from uint8 to int32 and add lhs_offset to each of them.
71 2. Cast rhs entries from uint8 to int32 and add rhs_offset to each of them.
73 4. Add result_offset to each entry of the result.
74 5. Multiply each entry of the result by the following fraction, and round to
97 scheme requires adding the lhs_offset and rhs_offset to each of the lhs and rhs
118 Adding lhs_offset to each entry of `lhs`, means adding `lhs_offset * P` to
[all …]

12345678910>>...118