Home
last modified time | relevance | path

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

12345678910>>...191

/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 protected abstract 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 fireTestSuiteStarted() argument
121 each.testSuiteStarted(description); in fireTestSuiteStarted()
137 protected void notifyListener(RunListener each) throws Exception { in fireTestSuiteFinished() argument
138 each.testSuiteFinished(description); in fireTestSuiteFinished()
155 protected void notifyListener(RunListener each) throws Exception { in fireTestStarted() 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.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/libiio/src/bindings/csharp/
DTrigger.cs38 foreach (Attr each in attrs) in set_rate()
39 if (each.name.Equals("frequency")) in set_rate()
41 each.write((long) rate); in set_rate()
51 foreach (Attr each in attrs) in get_rate()
52 if (each.name.Equals("frequency")) in get_rate()
53 return (ulong) each.read_long(); in get_rate()
/external/junit/src/main/java/junit/framework/
DTestSuite.java138 for (Method each : MethodSorter.getDeclaredMethods(superClass)) {
139 addTestMethod(each, names, theClass);
171 for (Class<?> each : classes) {
172 addTest(testCaseForClass(each));
176 private Test testCaseForClass(Class<?> each) {
177 if (TestCase.class.isAssignableFrom(each)) {
178 return new TestSuite(each.asSubclass(TestCase.class));
180 return warning(each.getCanonicalName() + " does not extend TestCase");
213 for (Test each : fTests) {
214 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/llvm-project/llvm/test/DebugInfo/
Ddebugify-each.ll1 ; RUN: opt -debugify-each -O3 -S -o /dev/null < %s 2> %t
4 ; RUN: opt -disable-output -debugify-each -passes='default<O3>' %s 2> %t
8 ; RUN: opt -enable-debugify -debugify-each -O3 -S -o /dev/null < %s 2> %t
12 ; RUN: opt -debugify-each -instrprof -instrprof -sroa -sccp -S -o /dev/null < %s 2> %t
16 ; Verify that debugify each can be safely used with piping
17 ; RUN: opt -debugify-each -O1 < %s | opt -O2 -o /dev/null
20 ; RUN: opt -disable-output -debugify-quiet -debugify-each -O1 < %s 2>&1 | count 0
25 ; RUN: opt -O1 -debugify-each < %s -S -o %t.after
30 ; RUN: opt -O1 -debugify-each < %s | llvm-dis -o %t.after
35 ; RUN: opt -debugify-each -passes=instsimplify -S -o /dev/null < %s 2> %t
[all …]
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_BoostedTreesCalculateBestFeatureSplitV2.pbtxt13 …accumulated stats summary (gradient/hessian) per node, per dimension, per buckets for each feature.
26 Rank 1 tensor with ids for each feature. This is the real id of the feature.
56 …possible split node ids for each feature. The length of the list is num_features, but each tensor …
62 A Rank 1 tensor indicating the best gains for each feature to split for certain nodes. See above fo…
68 A Rank 1 tensors indicating the best feature id for each node. See above for details like shapes an…
74 A Rank 1 tensors indicating the best feature dimension for each feature to split for certain nodes …
80 A Rank 1 tensors indicating the bucket id to compare with (as a threshold) for split in each node. …
86 …he output node_ids_list) to the left direction by the given threshold for each feature. This value…
114 …summary: "Calculates gains for each feature and returns the best possible split information for ea…
116 … the best threshold (bucket id), gains and left/right node contributions per node for each feature.
[all …]
Dapi_def_BoostedTreesCalculateBestFeatureSplit.pbtxt13 …accumulated stats summary (gradient/hessian) per node, per dimension, per buckets for each feature.
44 …possible split node ids for each feature. The length of the list is num_features, but each tensor …
50 A Rank 1 tensors indicating the best gains for each feature to split for certain nodes. See above f…
56 A Rank 1 tensors indicating the best feature dimension for each feature to split for certain nodes …
62 A Rank 1 tensors indicating the bucket id to compare with (as a threshold) for split in each node. …
68 …he output node_ids_list) to the left direction by the given threshold for each feature. This value…
96 …summary: "Calculates gains for each feature and returns the best possible split information for th…
98 … the best threshold (bucket id), gains and left/right node contributions per node for each feature.
100 … be split on each feature. Hence, the list of possible nodes can differ between the features. Ther…
102 …node, so that it needs to be combined later to produce the best split for each node (among all pos…
[all …]
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_BoostedTreesSparseCalculateBestFeatureSplit.pbtxt13 … for accumulated stats summary (gradient/hessian) per node per bucket for each feature. The second…
20 …N specifies the number of non-zero values), which supplies the values for each element in summary_…
62 A Rank 1 tensor indicating the best gains to split each node.
68 A Rank 1 tensor indicating the best feature dimension for each feature to split for each node.
74 A Rank 1 tensor indicating the bucket id to compare with (as a threshold) for split in each node.
80 …des when branching from parent nodes to the left direction by the given threshold for each feature.
109 …summary: "Calculates gains for each feature and returns the best possible split information for th…
111 … the best threshold (bucket id), gains and left/right node contributions per node for each feature.
113 … be split on each feature. Hence, the list of possible nodes can differ between the features. Ther…
115 …node, so that it needs to be combined later to produce the best split for each node (among all pos…
[all …]
Dapi_def_RaggedCross.pbtxt6 description: "The values tensor for each RaggedTensor input."
10 description: "The row_splits tensor for each RaggedTensor input."
14 description: "The indices tensor for each SparseTensor input."
18 description: "The values tensor for each SparseTensor input."
22 description: "The dense_shape tensor for each SparseTensor input."
39 String specifying the tensor type for each input. The `i`th character in
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_BoostedTreesUpdateEnsembleV2.pbtxt13 Rank 1 tensor with ids for each feature. This is the real id of
20 List of rank 1 tensors representing the dimension in each feature.
33 List of rank 1 tensors representing the gains for each of the feature's
40 List of rank 1 tensors representing the thesholds for each of the
47 List of rank 2 tensors with left leaf contribs for each of
55 List of rank 2 tensors with right leaf contribs for each
63 List of rank 1 tensors representing the split type for each feature.
75 shrinkage const for each new tree.
/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/angle/scripts/
Dvk_mandatory_format_support_capture_to_json.js18 $("#features-formats-mandatory-features-subbyte td").each(function() {
20 $this.find("code").each(function() {
41 $("#" + allTableIds[i] + " td").each(function() {
44 $this.find("code").each(function() {
53 $(this).closest("tr").find("td.halign-center").each(function() {
/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 …]

12345678910>>...191