HomeSort by relevance Sort by last modified time
    Searched refs:forEach (Results 1 - 25 of 469) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
DataBinderWriter.kt 32 layoutBinders.groupBy{it.layoutname }.forEach {
46 it.value.forEach {
69 layoutBinders.filter{it.isMerge }.groupBy{it.layoutname }.forEach {
79 it.value.forEach {
102 layoutBinders.groupBy {"${it.tag}_0".hashCode()}.forEach {
104 it.value.forEach {
129 brWriter.indexedProps.forEach {
LayoutBinderWriter.kt 52 Scope.values().forEach { usedFieldNames[it] = hashSetOf<String>() }
224 buckets.withIndex().forEach {
337 taggedViews.forEach {
343 }.withIndex().forEach {
358 layoutBinder.bindingTargets.filter{ it.isUsed && it.isBinder }.forEach {
371 includeMap.keys.forEach {
399 viewsWithIds.forEach {
436 layoutBinder.sortedTargets.filter { it.id != null }.forEach {
452 taggedViews.forEach {
508 includedBinders.filter{it.isUsed }.forEach { binder -
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/common/
utils.js 7 Object.keys(optObj).forEach(function (key) {
  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicYuvToRGB.java 68 public void forEach(Allocation aout) {
69 forEach(0, (Allocation) null, aout, null);
ScriptIntrinsic3DLUT.java 86 public void forEach(Allocation ain, Allocation aout) {
87 forEach(ain, aout, null);
98 public void forEach(Allocation ain, Allocation aout, Script.LaunchOptions opt) {
99 forEach(0, ain, aout, null, opt);
ScriptIntrinsicBlur.java 87 public void forEach(Allocation aout) {
88 forEach(0, (Allocation) null, aout, null);
99 public void forEach(Allocation aout, Script.LaunchOptions opt) {
100 forEach(0, (Allocation) null, aout, null, opt);
ScriptIntrinsicConvolve5x5.java 109 public void forEach(Allocation aout) {
110 forEach(0, (Allocation) null, aout, null);
121 public void forEach(Allocation aout, Script.LaunchOptions opt) {
122 forEach(0, (Allocation) null, aout, null, opt);
ScriptIntrinsicConvolve3x3.java 107 public void forEach(Allocation aout) {
108 forEach(0, (Allocation) null, aout, null);
119 public void forEach(Allocation aout, Script.LaunchOptions opt) {
120 forEach(0, (Allocation) null, aout, null, opt);
ScriptIntrinsicLUT.java 124 public void forEach(Allocation ain, Allocation aout) {
125 forEach(ain, aout, null);
136 public void forEach(Allocation ain, Allocation aout, Script.LaunchOptions opt) {
141 forEach(0, ain, aout, null, opt);
  /external/v8/test/mjsunit/es6/
typedarray-foreach.js 25 assertEquals(1, constructor.prototype.forEach.length);
32 a.forEach(function (n) { count++; });
38 a.forEach(function (n, index, array) { result.push(this.value); }, o);
43 a.forEach(function (n, index, array) { array[index] = n + 1; count++ });
52 a.forEach(function () {
57 a.forEach(function () {
76 a.forEach(function (n, index, array) {
88 // still make .forEach() finish, but exiting early due to the missing
96 a.forEach(function (n, index, array) {
110 a.forEach(function (n) { count++ })
    [all...]
debug-stepin-collections-foreach.js 49 s.forEach(cb_set); // B1
57 m.forEach(cb_map); // B1
63 // Array.forEach calls a callback function, which by itself uses
64 // Array.forEach with another callback function.
77 s.forEach(cb_set_2); // B2 B14 B26
82 m.forEach(cb_map_2); // B2 B14 B26
89 s.forEach(cb_set_foreach); // B1
97 m.forEach(cb_map_foreach); // B1
  /external/v8/test/intl/general/
smp-identifier.js 30 [0x10403, 0x1043C, 0x16F9C, 0x10048, 0x1014D].forEach(function(c) {
35 [0x101FD, 0x11002, 0x104A9].forEach(function(c) {
40 [0x10111, 0x1F4A9].forEach(function(c) {
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
StreamCloseTest.java 43 ints.forEach(i -> {});
53 ints.forEach(i -> {});
59 ints.forEach(i -> {});
65 ints.forEach(i -> {});
71 ints.forEach(i -> {});
83 ints.forEach(i -> {});
89 ints.forEach(i -> {});
95 ints.forEach(i -> {});
101 ints.forEach(i -> {});
115 ints.forEach(i -> {})
    [all...]
CountTest.java 53 data.stream().forEach(e -> expectedCount.incrementAndGet());
64 data.stream().forEach(e -> expectedCount.incrementAndGet());
75 data.stream().forEach(e -> expectedCount.incrementAndGet());
86 data.stream().forEach(e -> expectedCount.incrementAndGet());
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicYuvToRGB.java 76 public void forEach(Allocation aout) {
77 forEach(0, (Allocation) null, aout, null);
ScriptIntrinsicConvolve3x3.java 116 public void forEach(Allocation aout) {
117 forEach(0, (Allocation) null, aout, null);
128 public void forEach(Allocation aout, Script.LaunchOptions opt) {
129 forEach(0, (Allocation) null, aout, null, opt);
ScriptIntrinsicConvolve5x5.java 119 public void forEach(Allocation aout) {
120 forEach(0, (Allocation) null, aout, null);
131 public void forEach(Allocation aout, Script.LaunchOptions opt) {
132 forEach(0, (Allocation) null, aout, null, opt);
  /libcore/ojluni/src/main/java/java/lang/
Iterable.java 37 * <a href="{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/language/foreach.html">For-each Loop</a>
72 default void forEach(Consumer<? super T> action) {
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadLocalRandom8Test.java 81 r.ints(size).parallel().forEach(x -> counter.increment());
96 r.longs(size).parallel().forEach(x -> counter.increment());
111 r.doubles(size).parallel().forEach(x -> counter.increment());
127 r.ints(size, lo, hi).parallel().forEach(
146 r.longs(size, lo, hi).parallel().forEach(
165 r.doubles(size, lo, hi).parallel().forEach(
181 r.ints().limit(size).parallel().forEach(x -> counter.increment());
192 r.longs().limit(size).parallel().forEach(x -> counter.increment());
203 r.doubles().limit(size).parallel().forEach(x -> counter.increment());
214 r.ints().limit(size).forEach(x -> counter.increment())
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ClearObjectTest.java 42 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
68 forEach(TEST_ID_ELEMENT, mIn, mOut);
85 forEach(TEST_ID_TYPE, mIn, mOut);
101 forEach(TEST_ID_ALLOCATION, mIn, mOut);
117 forEach(TEST_ID_SAMPLER, mIn, mOut);
133 forEach(TEST_ID_SCRIPT, mIn, mOut);
AllocationResize.java 31 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
55 forEach(0, mIn, mOut);
  /external/v8/test/mjsunit/regress/
regress-619382.js 31 __v_26.forEach(function(__v_16) {
32 __v_28.forEach(function(ctor) {
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Artistic1.java 33 blur.forEach(mBlured);
  /external/v8/test/mjsunit/harmony/
atomics.js 46 badArrayTypes.forEach(function(o) {
67 nonInteger.forEach(function(i) {
81 [-1, 2, 100].forEach(function(i) {
95 [-1, 1, 100].forEach(function(i) {
109 [2, 100].forEach(function(i) {
143 [-0, 0, 0.0, null, false].forEach(function(i) {
145 [si32a, si32a2].forEach(function(array) {
161 [3, 3.0, '3', '3.0', valueOf, toString].forEach(function(i) {
163 [si32a, si32a2].forEach(function(array) {
185 IntegerTypedArrayConstructors.forEach(function(t)
    [all...]
  /frameworks/rs/cpp/
ScriptIntrinsics.cpp 48 void ScriptIntrinsic3DLUT::forEach(sp<Allocation> ain, sp<Allocation> aout) {
51 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "3DLUT forEach element mismatch");
54 Script::forEach(0, ain, aout, nullptr, 0);
87 Script::forEach(0, in, out, nullptr, 0);
95 Script::forEach(1, in, out, nullptr, 0);
103 Script::forEach(2, in, out, nullptr, 0);
111 Script::forEach(3, in, out, nullptr, 0);
119 Script::forEach(4, in, out, nullptr, 0);
127 Script::forEach(5, in, out, nullptr, 0);
135 Script::forEach(6, in, out, nullptr, 0)
    [all...]

Completed in 2024 milliseconds

1 2 3 4 5 6 7 8 91011>>