Home
last modified time | relevance | path

Searched refs:IntoParallelIterator (Results 1 – 25 of 63) sorted by relevance

123

/aosp_15_r20/external/rust/android-crates-io/crates/rayon/src/iter/
Dfrom_par_iter.rs2 use super::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
15 I: IntoParallelIterator, in collect_extended() argument
30 I: IntoParallelIterator<Item = T>, in from_par_iter()
43 I: IntoParallelIterator<Item = T>, in from_par_iter()
56 I: IntoParallelIterator<Item = T>, in from_par_iter()
69 I: IntoParallelIterator<Item = T>, in from_par_iter()
82 I: IntoParallelIterator<Item = T>, in from_par_iter()
96 I: IntoParallelIterator<Item = T>, in from_par_iter()
110 I: IntoParallelIterator<Item = T>, in from_par_iter()
128 I: IntoParallelIterator<Item = (K, V)>, in from_par_iter()
[all …]
Dextend.rs3 use super::{IntoParallelIterator, ParallelExtend, ParallelIterator};
107 I: IntoParallelIterator<Item = T>, in par_extend()
120 I: IntoParallelIterator<Item = &'a T>, in par_extend()
143 I: IntoParallelIterator<Item = (K, V)>, in par_extend()
157 I: IntoParallelIterator<Item = (&'a K, &'a V)>, in par_extend()
179 I: IntoParallelIterator<Item = T>, in par_extend()
192 I: IntoParallelIterator<Item = &'a T>, in par_extend()
219 I: IntoParallelIterator<Item = (K, V)>, in par_extend()
235 I: IntoParallelIterator<Item = (&'a K, &'a V)>, in par_extend()
261 I: IntoParallelIterator<Item = T>, in par_extend()
[all …]
Dmod.rs214 pub trait IntoParallelIterator { interface
287 &'data I: IntoParallelIterator,
289 type Iter = <&'data I as IntoParallelIterator>::Iter;
290 type Item = <&'data I as IntoParallelIterator>::Item;
334 &'data mut I: IntoParallelIterator,
336 type Iter = <&'data mut I as IntoParallelIterator>::Iter;
337 type Item = <&'data mut I as IntoParallelIterator>::Item;
859 PI: IntoParallelIterator, in flat_map() argument
927 Self::Item: IntoParallelIterator, in flatten() argument
1634 C: IntoParallelIterator<Item = Self::Item>, in chain()
[all …]
Dflatten.rs18 I::Item: IntoParallelIterator,
29 I::Item: IntoParallelIterator,
31 type Item = <I::Item as IntoParallelIterator>::Item;
58 T: IntoParallelIterator,
88 T: IntoParallelIterator,
107 T: IntoParallelIterator,
Dflat_map.rs35 PI: IntoParallelIterator,
66 U: IntoParallelIterator,
98 U: IntoParallelIterator,
119 U: IntoParallelIterator,
Dmultizip.rs136 impl<$( $T, )+> IntoParallelIterator for ($( $T, )+) impl
139 $T: IntoParallelIterator,
153 impl<'a, $( $T, )+> IntoParallelIterator for &'a ($( $T, )+) impl
170 impl<'a, $( $T, )+> IntoParallelIterator for &'a mut ($( $T, )+) impl
/aosp_15_r20/external/rust/android-crates-io/crates/dashmap/src/rayon/
Dset.rs5 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
15 I: IntoParallelIterator<Item = K>, in par_extend()
30 I: IntoParallelIterator<Item = K>, in par_extend()
46 I: IntoParallelIterator<Item = K>, in from_par_iter()
54 impl<K, S> IntoParallelIterator for DashSet<K, S>
89 impl<'a, K, S> IntoParallelIterator for &'a DashSet<K, S> impl
Dmap.rs7 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
19 I: IntoParallelIterator<Item = (K, V)>, in par_extend()
35 I: IntoParallelIterator<Item = (K, V)>, in par_extend()
52 I: IntoParallelIterator<Item = (K, V)>, in from_par_iter()
66 impl<K, V, S> IntoParallelIterator for DashMap<K, V, S>
111 impl<'a, K, V, S> IntoParallelIterator for &'a DashMap<K, V, S> impl
160 impl<'a, K, V, S> IntoParallelIterator for &'a mut DashMap<K, V, S> impl
Dread_only.rs5 use rayon::iter::IntoParallelIterator;
7 impl<K, V, S> IntoParallelIterator for ReadOnlyView<K, V, S>
24 impl<'a, K, V, S> IntoParallelIterator for &'a ReadOnlyView<K, V, S> impl
43 use rayon::iter::{IntoParallelIterator, IntoParallelRefIterator, ParallelIterator};
/aosp_15_r20/external/rust/android-crates-io/crates/indexmap/src/
Drustc.rs7 use rustc_rayon::iter::{IndexedParallelIterator, IntoParallelIterator, ParallelIterator};
12 impl<K, V, S> IntoParallelIterator for IndexMap<K, V, S>
41 impl<'a, K, V, S> IntoParallelIterator for &'a IndexMap<K, V, S> impl
70 impl<'a, K, V, S> IntoParallelIterator for &'a mut IndexMap<K, V, S> impl
103 impl<T, S> IntoParallelIterator for IndexSet<T, S>
131 impl<'a, T, S> IntoParallelIterator for &'a IndexSet<T, S> impl
/aosp_15_r20/external/rust/android-crates-io/crates/rayon/src/
Dresult.rs20 impl<T: Send, E> IntoParallelIterator for Result<T, E> {
50 impl<'a, T: Sync, E> IntoParallelIterator for &'a Result<T, E> { impl
72 impl<'a, T: Send, E> IntoParallelIterator for &'a mut Result<T, E> { impl
101 I: IntoParallelIterator<Item = Result<T, E>>, in from_par_iter()
Doption.rs26 impl<T: Send> IntoParallelIterator for Option<T> {
99 impl<'a, T: Sync> IntoParallelIterator for &'a Option<T> { impl
129 impl<'a, T: Send> IntoParallelIterator for &'a mut Option<T> { impl
180 I: IntoParallelIterator<Item = Option<T>>, in from_par_iter()
Darray.rs14 impl<'data, T: Sync + 'data, const N: usize> IntoParallelIterator for &'data [T; N] { impl
23 impl<'data, T: Send + 'data, const N: usize> IntoParallelIterator for &'data mut [T; N] { impl
32 impl<T: Send, const N: usize> IntoParallelIterator for [T; N] { impl
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/
H A Dmap.rs10 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
353 impl<K: Send, V: Send, S, A: Allocator + Send> IntoParallelIterator for HashMap<K, V, S, A> {
365 impl<'a, K: Sync, V: Sync, S, A: Allocator> IntoParallelIterator for &'a HashMap<K, V, S, A> { impl
378 impl<'a, K: Sync, V: Send, S, A: Allocator> IntoParallelIterator for &'a mut HashMap<K, V, S, A> { impl
403 P: IntoParallelIterator<Item = (K, V)>, in from_par_iter()
421 I: IntoParallelIterator<Item = (K, V)>, in par_extend()
437 I: IntoParallelIterator<Item = (&'a K, &'a V)>, in par_extend()
448 I: IntoParallelIterator, in extend() argument
H A Dset.rs8 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
304 impl<T: Send, S, A: Allocator + Send> IntoParallelIterator for HashSet<T, S, A> {
316 impl<'a, T: Sync, S, A: Allocator> IntoParallelIterator for &'a HashSet<T, S, A> { impl
336 P: IntoParallelIterator<Item = T>, in from_par_iter()
352 I: IntoParallelIterator<Item = T>, in par_extend()
366 I: IntoParallelIterator<Item = &'a T>, in par_extend()
378 I: IntoParallelIterator, in extend() argument
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/
H A Dmap.rs10 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
353 impl<K: Send, V: Send, S, A: Allocator + Send> IntoParallelIterator for HashMap<K, V, S, A> {
365 impl<'a, K: Sync, V: Sync, S, A: Allocator> IntoParallelIterator for &'a HashMap<K, V, S, A> { impl
378 impl<'a, K: Sync, V: Send, S, A: Allocator> IntoParallelIterator for &'a mut HashMap<K, V, S, A> { impl
403 P: IntoParallelIterator<Item = (K, V)>, in from_par_iter()
421 I: IntoParallelIterator<Item = (K, V)>, in par_extend()
437 I: IntoParallelIterator<Item = (&'a K, &'a V)>, in par_extend()
448 I: IntoParallelIterator, in extend() argument
H A Dset.rs8 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
304 impl<T: Send, S, A: Allocator + Send> IntoParallelIterator for HashSet<T, S, A> {
316 impl<'a, T: Sync, S, A: Allocator> IntoParallelIterator for &'a HashSet<T, S, A> { impl
336 P: IntoParallelIterator<Item = T>, in from_par_iter()
352 I: IntoParallelIterator<Item = T>, in par_extend()
366 I: IntoParallelIterator<Item = &'a T>, in par_extend()
378 I: IntoParallelIterator, in extend() argument
/aosp_15_r20/external/rust/android-crates-io/crates/hashbrown/src/external_trait_impls/rayon/
Dmap.rs10 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
357 impl<K: Send, V: Send, S, A: Allocator + Clone + Send> IntoParallelIterator impl
371 impl<'a, K: Sync, V: Sync, S, A: Allocator + Clone> IntoParallelIterator impl
386 impl<'a, K: Sync, V: Send, S, A: Allocator + Clone> IntoParallelIterator impl
413 P: IntoParallelIterator<Item = (K, V)>, in from_par_iter()
431 I: IntoParallelIterator<Item = (K, V)>, in par_extend()
447 I: IntoParallelIterator<Item = (&'a K, &'a V)>, in par_extend()
458 I: IntoParallelIterator, in extend() argument
Dset.rs8 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
304 impl<T: Send, S, A: Allocator + Clone + Send> IntoParallelIterator for HashSet<T, S, A> {
316 impl<'a, T: Sync, S, A: Allocator + Clone> IntoParallelIterator for &'a HashSet<T, S, A> { impl
336 P: IntoParallelIterator<Item = T>, in from_par_iter()
352 I: IntoParallelIterator<Item = T>, in par_extend()
366 I: IntoParallelIterator<Item = &'a T>, in par_extend()
378 I: IntoParallelIterator, in extend() argument
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/
H A Dmap.rs10 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
353 impl<K: Send, V: Send, S, A: Allocator + Send> IntoParallelIterator for HashMap<K, V, S, A> {
365 impl<'a, K: Sync, V: Sync, S, A: Allocator> IntoParallelIterator for &'a HashMap<K, V, S, A> { impl
378 impl<'a, K: Sync, V: Send, S, A: Allocator> IntoParallelIterator for &'a mut HashMap<K, V, S, A> { impl
403 P: IntoParallelIterator<Item = (K, V)>, in from_par_iter()
421 I: IntoParallelIterator<Item = (K, V)>, in par_extend()
437 I: IntoParallelIterator<Item = (&'a K, &'a V)>, in par_extend()
448 I: IntoParallelIterator, in extend() argument
H A Dset.rs8 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
304 impl<T: Send, S, A: Allocator + Send> IntoParallelIterator for HashSet<T, S, A> {
316 impl<'a, T: Sync, S, A: Allocator> IntoParallelIterator for &'a HashSet<T, S, A> { impl
336 P: IntoParallelIterator<Item = T>, in from_par_iter()
352 I: IntoParallelIterator<Item = T>, in par_extend()
366 I: IntoParallelIterator<Item = &'a T>, in par_extend()
378 I: IntoParallelIterator, in extend() argument
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/
H A Dmap.rs10 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
353 impl<K: Send, V: Send, S, A: Allocator + Send> IntoParallelIterator for HashMap<K, V, S, A> {
365 impl<'a, K: Sync, V: Sync, S, A: Allocator> IntoParallelIterator for &'a HashMap<K, V, S, A> { impl
378 impl<'a, K: Sync, V: Send, S, A: Allocator> IntoParallelIterator for &'a mut HashMap<K, V, S, A> { impl
403 P: IntoParallelIterator<Item = (K, V)>, in from_par_iter()
421 I: IntoParallelIterator<Item = (K, V)>, in par_extend()
437 I: IntoParallelIterator<Item = (&'a K, &'a V)>, in par_extend()
448 I: IntoParallelIterator, in extend() argument
H A Dset.rs8 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
304 impl<T: Send, S, A: Allocator + Send> IntoParallelIterator for HashSet<T, S, A> {
316 impl<'a, T: Sync, S, A: Allocator> IntoParallelIterator for &'a HashSet<T, S, A> { impl
336 P: IntoParallelIterator<Item = T>, in from_par_iter()
352 I: IntoParallelIterator<Item = T>, in par_extend()
366 I: IntoParallelIterator<Item = &'a T>, in par_extend()
378 I: IntoParallelIterator, in extend() argument
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/
H A Dmap.rs10 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
353 impl<K: Send, V: Send, S, A: Allocator + Send> IntoParallelIterator for HashMap<K, V, S, A> {
365 impl<'a, K: Sync, V: Sync, S, A: Allocator> IntoParallelIterator for &'a HashMap<K, V, S, A> { impl
378 impl<'a, K: Sync, V: Send, S, A: Allocator> IntoParallelIterator for &'a mut HashMap<K, V, S, A> { impl
403 P: IntoParallelIterator<Item = (K, V)>, in from_par_iter()
421 I: IntoParallelIterator<Item = (K, V)>, in par_extend()
437 I: IntoParallelIterator<Item = (&'a K, &'a V)>, in par_extend()
448 I: IntoParallelIterator, in extend() argument
H A Dset.rs8 use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
304 impl<T: Send, S, A: Allocator + Send> IntoParallelIterator for HashSet<T, S, A> {
316 impl<'a, T: Sync, S, A: Allocator> IntoParallelIterator for &'a HashSet<T, S, A> { impl
336 P: IntoParallelIterator<Item = T>, in from_par_iter()
352 I: IntoParallelIterator<Item = T>, in par_extend()
366 I: IntoParallelIterator<Item = &'a T>, in par_extend()
378 I: IntoParallelIterator, in extend() argument

123