Home
last modified time | relevance | path

Searched refs:ForEach (Results 1 – 25 of 3403) sorted by relevance

12345678910>>...137

/dports/science/qmcpack/qmcpack-3.11.0/src/Containers/PETE/
H A DForEach.h77 struct ForEach struct
89 return ForEach<Expr, FTag, CTag>::apply(e, f, c); in forEach()
93 struct ForEach<UnaryNode<Op, A>, FTag, CTag>
95 typedef typename ForEach<A, FTag, CTag>::Type_t TypeA_t;
104 struct ForEach<BinaryNode<Op, A, B>, FTag, CTag>
106 typedef typename ForEach<A, FTag, CTag>::Type_t TypeA_t;
118 struct ForEach<TrinaryNode<Op, A, B, C>, FTag, CTag>
139 struct ForEach<Expression<T>, FTag, CTag>
141 typedef typename ForEach<T, FTag, CTag>::Type_t Type_t;
154 struct ForEach<Reference<T>, FTag, CTag>
[all …]
/dports/devel/grpc/grpc-1.42.0/src/core/lib/promise/
H A Dfor_each.h54 class ForEach {
65 ForEach(Reader reader, Action action)
70 ForEach(const ForEach&) = delete;
71 ForEach& operator=(const ForEach&) = delete;
74 ForEach(ForEach&&) = default;
77 ForEach& operator=(ForEach&&) = default;
94 ForEach* const self;
129 for_each_detail::ForEach<Reader, Action> ForEach(Reader reader, Action action) {
130 return for_each_detail::ForEach<Reader, Action>(std::move(reader),
/dports/devel/py-grpcio/grpcio-1.43.0/src/core/lib/promise/
H A Dfor_each.h58 class ForEach {
69 ForEach(Reader reader, Action action)
74 ForEach(const ForEach&) = delete;
75 ForEach& operator=(const ForEach&) = delete;
78 ForEach(ForEach&&) = default;
81 ForEach& operator=(ForEach&&) = default;
98 ForEach* const self;
133 for_each_detail::ForEach<Reader, Action> ForEach(Reader reader, Action action) {
134 return for_each_detail::ForEach<Reader, Action>(std::move(reader),
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Threading.Tasks.Parallel/tests/
H A DParallelForTests.cs242 Parallel.ForEach(intList, item => { Interlocked.Add(ref sum, item); }); in TestParallelForEachConversions()
507 Parallel.ForEach(data, (x) => Interlocked.Add(ref counter, x)); in RunSimpleParallelForeachAddTest_List()
537 Parallel.ForEach(data, (x) => Interlocked.Add(ref counter, x)); in RunSimpleParallelForeachAddTest_Array()
683 Parallel.ForEach(mp, parallelOptions, delegate (int item) in TestParallelForDOP()
796 Parallel.ForEach(dict, delegate (KeyValuePair<long, long> kvp) in TestParallelForPaths()
817 Parallel.ForEach(dict, in TestParallelForPaths()
827 Parallel.ForEach(dict, in TestParallelForPaths()
857 Parallel.ForEach( in TestParallelForPaths()
866 Parallel.ForEach( in TestParallelForPaths()
1192 Parallel.ForEach(mp, parallelOptions, delegate (int i) in RunParallelLoopCancellationTests()
[all …]
H A DParallelForTest.cs270 Parallel.ForEach<Tuple<int, int>>(_rangePartitioner, Work); in ParallelForEach()
272 Parallel.ForEach<int>(_partitioner, Work); in ParallelForEach()
276 Parallel.ForEach<int>(_collection, Work); in ParallelForEach()
288 Parallel.ForEach<Tuple<int, int>>(_rangePartitioner, WorkWithStop); in ParallelForEachWithState()
290 Parallel.ForEach<int>(_partitioner, WorkWithStop); in ParallelForEachWithState()
294 Parallel.ForEach<int>(_collection, WorkWithStop); in ParallelForEachWithState()
312 Parallel.ForEach<int>(_collection, WorkWithIndexAndStop); in ParallelForEachWithIndexAndState()
368 Parallel.ForEach<int>(_partitioner, _parallelOption, Work); in ParallelForEachWithOptions()
372 Parallel.ForEach<int>(_collection, _parallelOption, Work); in ParallelForEachWithOptions()
386 Parallel.ForEach<int>(_partitioner, _parallelOption, WorkWithStop); in ParallelForEachWithOptionsAndState()
[all …]
/dports/devel/embb/embb-1.0.0/algorithms_cpp/test/
H A Dfor_each_test.cc91 using embb::algorithms::ForEach; in TestDataStructures()
102 ForEach(array, array + kCountSize, Square()); in TestDataStructures()
104 ForEach(deque.begin(), deque.end(), Square()); in TestDataStructures()
116 using embb::algorithms::ForEach; in TestFunctionPointers()
131 using embb::algorithms::ForEach; in TestHeterogeneous()
142 ForEach(vector.begin(), vector.end(), job); in TestHeterogeneous()
153 using embb::algorithms::ForEach; in TestRanges()
215 using embb::algorithms::ForEach; in TestBlockSizes()
235 using embb::algorithms::ForEach; in TestPolicy()
278 ForEach(second, vector.begin(), Square()); in TestPolicy()
[all …]
/dports/devel/py-pycerberus/pycerberus-0.6/tests/
H A Dforeach_test.py28 from pycerberus.validators import ForEach, IntegerValidator
34 validator_class = ForEach
72 self.init_validator(ForEach(IntegerValidator()))
86 self.init_validator(ForEach(IntegerValidator, min_length=2))
93 self.init_validator(ForEach(IntegerValidator, max_length=2))
99 self.init_validator(ForEach(IntegerValidator, min_length=1, max_length=1))
106 lambda: ForEach(IntegerValidator, min_length=2, max_length=1))
109 validator = ForEach(IntegerValidator, required=False)
113 self.init_validator(ForEach(IntegerValidator, default=[], required=False))
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/futures-util-0.3.5/src/stream/stream/
H A Dfor_each.rs11 pub struct ForEach<St, Fut, F> { struct
19 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> argument
32 impl<St, Fut, F> ForEach<St, Fut, F> implementation
37 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
38 ForEach { in new()
46 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
56 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
66 let ForEach { mut stream, f, mut future } = self.project(); in poll() localVariable
/dports/games/genact/genact-0.10.0/cargo-crates/futures-util-0.3.5/src/stream/stream/
H A Dfor_each.rs11 pub struct ForEach<St, Fut, F> { struct
19 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> argument
32 impl<St, Fut, F> ForEach<St, Fut, F> implementation
37 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
38 ForEach { in new()
46 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
56 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
66 let ForEach { mut stream, f, mut future } = self.project(); in poll() localVariable
/dports/net-im/fractal/fractal-4.4.0/vendor/futures-util/src/stream/stream/
H A Dfor_each.rs11 pub struct ForEach<St, Fut, F> { struct
19 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> argument
32 impl<St, Fut, F> ForEach<St, Fut, F> implementation
37 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
38 ForEach { in new()
46 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
56 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
66 let ForEach { mut stream, f, mut future } = self.project(); in poll() localVariable
/dports/sysutils/vector/vector-0.10.0/cargo-crates/futures-util-0.3.5/src/stream/stream/
H A Dfor_each.rs11 pub struct ForEach<St, Fut, F> { struct
19 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> argument
32 impl<St, Fut, F> ForEach<St, Fut, F> implementation
37 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
38 ForEach { in new()
46 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
56 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
66 let ForEach { mut stream, f, mut future } = self.project(); in poll() localVariable
/dports/net/proby/proby-1.0.2/cargo-crates/futures-util-0.3.5/src/stream/stream/
H A Dfor_each.rs11 pub struct ForEach<St, Fut, F> { struct
19 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> implementation
32 impl<St, Fut, F> ForEach<St, Fut, F> implementation
37 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
38 ForEach { in new()
46 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
56 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
66 let ForEach { mut stream, f, mut future } = self.project(); in poll() localVariable
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/futures-util-0.3.5/src/stream/stream/
H A Dfor_each.rs11 pub struct ForEach<St, Fut, F> { struct
19 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> argument
32 impl<St, Fut, F> ForEach<St, Fut, F> implementation
37 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
38 ForEach { in new()
46 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
56 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
66 let ForEach { mut stream, f, mut future } = self.project(); in poll() localVariable
/dports/audio/spotify-tui/spotify-tui-0.25.0/cargo-crates/futures-util-0.3.5/src/stream/stream/
H A Dfor_each.rs11 pub struct ForEach<St, Fut, F> { struct
19 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> argument
32 impl<St, Fut, F> ForEach<St, Fut, F> implementation
37 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
38 ForEach { in new()
46 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
56 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
66 let ForEach { mut stream, f, mut future } = self.project(); in poll() localVariable
/dports/sysutils/tealdeer/tealdeer-1.4.1/cargo-crates/futures-util-0.3.5/src/stream/stream/
H A Dfor_each.rs11 pub struct ForEach<St, Fut, F> { struct
19 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> argument
32 impl<St, Fut, F> ForEach<St, Fut, F> implementation
37 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
38 ForEach { in new()
46 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
56 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
66 let ForEach { mut stream, f, mut future } = self.project(); in poll() localVariable
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Threading.Tasks.Parallel/ref/
H A DSystem.Threading.Tasks.Parallel.cs20 …public static System.Threading.Tasks.ParallelLoopResult ForEach<TSource>(System.Collections.Concur… in ForEach() method in System.Threading.Tasks.Parallel
22 …public static System.Threading.Tasks.ParallelLoopResult ForEach<TSource>(System.Collections.Concur… in ForEach() method in System.Threading.Tasks.Parallel
23 …public static System.Threading.Tasks.ParallelLoopResult ForEach<TSource>(System.Collections.Concur… in ForEach() method in System.Threading.Tasks.Parallel
24 …public static System.Threading.Tasks.ParallelLoopResult ForEach<TSource>(System.Collections.Concur… in ForEach() method in System.Threading.Tasks.Parallel
25 …public static System.Threading.Tasks.ParallelLoopResult ForEach<TSource>(System.Collections.Concur… in ForEach() method in System.Threading.Tasks.Parallel
26 …public static System.Threading.Tasks.ParallelLoopResult ForEach<TSource>(System.Collections.Generi… in ForEach() method in System.Threading.Tasks.Parallel
27 …public static System.Threading.Tasks.ParallelLoopResult ForEach<TSource>(System.Collections.Generi… in ForEach() method in System.Threading.Tasks.Parallel
28 …public static System.Threading.Tasks.ParallelLoopResult ForEach<TSource>(System.Collections.Generi… in ForEach() method in System.Threading.Tasks.Parallel
29 …public static System.Threading.Tasks.ParallelLoopResult ForEach<TSource>(System.Collections.Generi… in ForEach() method in System.Threading.Tasks.Parallel
30 …public static System.Threading.Tasks.ParallelLoopResult ForEach<TSource>(System.Collections.Generi… in ForEach() method in System.Threading.Tasks.Parallel
[all …]
/dports/math/yacas/yacas-1.9.1/scripts/linalg.rep/
H A Dcode.ys51 ForEach(item,result)
100 ForEach(term,perms)
381 ForEach(m, 1 .. l)
394 ForEach(m, l .. 1)
877 ForEach(i,1 .. n)[
891 ForEach(i,1 .. n)
892 ForEach(j,1 .. n)
925 ForEach(i,1 .. n)[
967 ForEach(i,1 .. n)[
968 ForEach(j,1 .. n)
[all …]
/dports/multimedia/termplay/termplay-2.0.6/cargo-crates/futures-util-0.3.1/src/stream/stream/
H A Dfor_each.rs10 pub struct ForEach<St, Fut, F> { struct
16 impl<St, Fut, F> Unpin for ForEach<St, Fut, F> argument
22 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> implementation
35 impl<St, Fut, F> ForEach<St, Fut, F> impl
44 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
45 ForEach { in new()
53 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
63 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
/dports/net/proby/proby-1.0.2/cargo-crates/futures-util-preview-0.3.0-alpha.19/src/stream/
H A Dfor_each.rs10 pub struct ForEach<St, Fut, F> { struct
16 impl<St, Fut, F> Unpin for ForEach<St, Fut, F> argument
22 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> implementation
35 impl<St, Fut, F> ForEach<St, Fut, F> impl
44 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
45 ForEach { in new()
53 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
63 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/futures-util-preview-0.3.0-alpha.19/src/stream/
H A Dfor_each.rs10 pub struct ForEach<St, Fut, F> { struct
16 impl<St, Fut, F> Unpin for ForEach<St, Fut, F> argument
22 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> implementation
35 impl<St, Fut, F> ForEach<St, Fut, F> implementation
44 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
45 ForEach { in new()
53 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
63 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/futures-util/src/stream/stream/
H A Dfor_each.rs10 pub struct ForEach<St, Fut, F> { struct
16 impl<St, Fut, F> Unpin for ForEach<St, Fut, F> argument
22 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> implementation
35 impl<St, Fut, F> ForEach<St, Fut, F> implementation
44 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
45 ForEach { in new()
53 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
63 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/futures-util-0.3.4/src/stream/stream/
H A Dfor_each.rs10 pub struct ForEach<St, Fut, F> { struct
16 impl<St, Fut, F> Unpin for ForEach<St, Fut, F> argument
22 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> implementation
35 impl<St, Fut, F> ForEach<St, Fut, F> implementation
44 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
45 ForEach { in new()
53 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
63 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
/dports/security/rustscan/RustScan-2.0.1/cargo-crates/futures-util-0.3.7/src/stream/stream/
H A Dfor_each.rs11 pub struct ForEach<St, Fut, F> { struct
19 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> argument
32 impl<St, Fut, F> ForEach<St, Fut, F> implementation
37 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
38 ForEach { in new()
46 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
56 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
/dports/www/castor/castor-0.8.16/cargo-crates/futures-util-0.3.6/src/stream/stream/
H A Dfor_each.rs11 pub struct ForEach<St, Fut, F> { struct
19 impl<St, Fut, F> fmt::Debug for ForEach<St, Fut, F> argument
32 impl<St, Fut, F> ForEach<St, Fut, F> impl
37 pub(super) fn new(stream: St, f: F) -> ForEach<St, Fut, F> { in new()
38 ForEach { in new()
46 impl<St, Fut, F> FusedFuture for ForEach<St, Fut, F> implementation
56 impl<St, Fut, F> Future for ForEach<St, Fut, F> implementation
/dports/math/yacas/yacas-1.9.1/scripts/graph.rep/
H A Dcode.ys6 ForEach (e, edges) [
29 ForEach (v, vertices)
34 ForEach(e, edges) [
58 ForEach (v, vertices) [
61 ForEach (a, adjacent) [
145 ForEach (v, V)
148 ForEach (e, E) [
155 ForEach (e, E) [
236 ForEach (v, V)
239 ForEach (e, E) [
[all …]

12345678910>>...137