Home
last modified time | relevance | path

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

12345678910>>...182

/external/ltp/runtest/
Dcontrollers49 cgroup_fj_stress_debug_2_2_each cgroup_fj_stress.sh debug 2 2 each
50 cgroup_fj_stress_debug_3_3_each cgroup_fj_stress.sh debug 3 3 each
51 cgroup_fj_stress_debug_4_4_each cgroup_fj_stress.sh debug 4 4 each
52 cgroup_fj_stress_debug_2_9_each cgroup_fj_stress.sh debug 2 9 each
53 cgroup_fj_stress_debug_10_3_each cgroup_fj_stress.sh debug 10 3 each
54 cgroup_fj_stress_debug_1_200_each cgroup_fj_stress.sh debug 1 200 each
55 cgroup_fj_stress_debug_200_1_each cgroup_fj_stress.sh debug 200 1 each
74 cgroup_fj_stress_cpuset_2_2_each cgroup_fj_stress.sh cpuset 2 2 each
75 cgroup_fj_stress_cpuset_3_3_each cgroup_fj_stress.sh cpuset 3 3 each
76 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/v8/tools/
Dparse-processor.js236 this.funktions = this.funktions.filter(each => true);
282 (bytes, each) => bytes + (each.isToplevel() ? each.getBytes() : 0), 0);
346 return list.reduce((bytes, each) => bytes + each.getOwnBytes(), 0)
369 info("toplevel fn", all.filter(each => each.isToplevel()));
370 info('preparsed', all.filter(each => each.preparseDuration > 0));
372 info('fully parsed', all.filter(each => each.parseDuration > 0));
375 info("executed", all.filter(each => each.executionTimestamp > 0));
376 info('forEval', all.filter(each => each.isEval));
377 info("lazy compiled", all.filter(each => each.lazyCompileTimestamp > 0));
378 info("eager compiled", all.filter(each => each.compileTimestamp > 0));
[all …]
Dmap-processor.js542 return this.basicFind(this.values, each => each.time - time, offset);
546 let start = this.basicFind(this.markers, each => each.time - startTime);
547 let end = this.basicFind(this.markers, each => each.time - endTime, start);
567 return this.values.reduce((sum, each) => {
568 return sum + (filter(each) ? 1 : 0);
587 return this.values.histogram(each => each.depth);
591 return this.values.histogram(each => each.children.length);
678 map_fn = each => each; argument
681 list.forEach(each=> {
682 let type = map_fn(each);
/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.cs40 each:t=type.extendsBounds ?><?cs
43 /each ?><?cs
46 each:t=type.superBounds ?><?cs
49 /each ?><?cs
52 ?>&lt;<?cs each:t=type.typeArguments ?><?cs call:type_link_impl(t, "true") ?><?cs
54 /each ?>&gt;<?cs
66 each:t=type.typeArguments?><?cs
70 /each ?>&gt;<?cs
92 each:param = params ?><?cs
96 /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 ?>
/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/tensorflow/tensorflow/contrib/receptive_field/python/util/
Dgraph_compute_order.py117 for each in node_def.input:
119 if each.startswith('^'):
123 each = each.split(':')[0]
126 name_to_node, each, node_info, input_node_name, input_node_size)
189 for each in graph_def.node:
190 _get_computed_nodes(name_to_node, each.name, node_info, input_node_name,
/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
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_BoostedTreesCalculateBestGainsPerFeature.pbtxt13 …for accumulated stats summary (gradient/hessian) per node per buckets for each feature. The first …
43 …possible split node ids for each feature. The length of the list is num_features, but each tensor …
49 An output list of Rank 1 tensors indicating the best gains for each feature to split for certain no…
55 …rs indicating the bucket id to compare with (as a threshold) for split in each node. See above for…
61 …he output node_ids_list) to the left direction by the given threshold for each feature. This value…
82 …summary: "Calculates gains for each feature and returns the best possible split information for th…
84 … the best threshold (bucket id), gains and left/right node contributions per node for each feature.
86 … be split on each feature. Hence, the list of possible nodes can differ between the features. Ther…
88 …node, so that it needs to be combined later to produce the best split for each node (among all pos…
91 …tensors of all lists are the same and equal to the number of possible split nodes for each feature.
Dapi_def_BoostedTreesBucketize.pbtxt7 float; List of Rank 1 Tensor each containing float values for a single feature.
13 float; List of Rank 1 Tensors each containing the bucket boundaries for a single
20 int; List of Rank 1 Tensors each containing the bucketized values for a single feature.
29 summary: "Bucketize each feature based on bucket boundaries."
31 An op that returns a list of float tensors, where each tensor represents the
Dapi_def_ParameterizedTruncatedNormal.pbtxt12 The mean parameter of each batch.
18 The standard deviation parameter of each batch. Must be greater than 0.
31 for each batch.
38 truncated normal values using the parameters for each row.
61 summary: "Outputs random values from a normal distribution. The parameters may each be a"
64 stores the parameters for each batch.
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/RISCV/
DRISCVInstrFormatsC.td49 // The immediate value encoding differs for each instruction, so each subclass
51 // The bits Inst{6-2} must be set for each instruction.
65 // The immediate value encoding differs for each instruction, so each subclass
67 // The bits Inst{12-7} must be set for each instruction.
91 // The immediate value encoding differs for each instruction, so each subclass
93 // The bits Inst{12-10} and Inst{6-5} must be set for each instruction.
106 // The immediate value encoding differs for each instruction, so each subclass
108 // The bits Inst{12-10} and Inst{6-5} must be set for each instruction.
/external/doclava/res/assets/templates-sdk/
Dclass.cs15 <?cs each:method = methods ?>
45 <?cs /each ?>
52 <?cs each:field=fields ?>
72 <?cs /each ?>
79 <?cs each:field=fields ?>
95 <?cs /each ?>
102 <?cs each:attr=attrs ?>
118 <?cs /each ?>
125 <?cs each:cl=class.inners ?>
146 <?cs /each ?>
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/
Ddebugify-each.ll1 ; RUN: opt -debugify-each -O3 -S -o /dev/null < %s 2> %t
5 ; RUN: opt -enable-debugify -debugify-each -O3 -S -o /dev/null < %s 2> %t
9 ; RUN: opt -debugify-each -instrprof -instrprof -sroa -sccp -S -o /dev/null < %s 2> %t
13 ; Verify that debugify each can be safely used with piping
14 ; RUN: opt -debugify-each -O1 < %s | opt -O2 -o /dev/null
17 ; RUN: opt -disable-output -debugify-quiet -debugify-each -O1 < %s 2>&1 | count 0
23 ; RUN: opt -O1 -debugify-each < %s -S -o - | \
31 ; RUN: opt -O1 -debugify-each < %s | \
/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/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()

12345678910>>...182