Home
last modified time | relevance | path

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

12345678910>>...194

/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/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.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/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_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_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
/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/u-boot/drivers/pinctrl/renesas/
DKconfig17 the GPIO definitions and pin control functions for each available
27 the GPIO definitions and pin control functions for each available
37 the GPIO definitions and pin control functions for each available
47 the GPIO definitions and pin control functions for each available
57 the GPIO definitions and pin control functions for each available
67 the GPIO definitions and pin control functions for each available
77 the GPIO definitions and pin control functions for each available
87 the GPIO definitions and pin control functions for each available
97 the GPIO definitions and pin control functions for each available
107 the GPIO definitions and pin control functions for each available
[all …]
/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/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/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>>...194