/aosp_15_r20/external/rust/android-crates-io/crates/rayon/src/iter/ |
D | multizip.rs | 136 impl<$( $T, )+> IntoParallelIterator for ($( $T, )+) impl 153 impl<'a, $( $T, )+> IntoParallelIterator for &'a ($( $T, )+) impl 170 impl<'a, $( $T, )+> IntoParallelIterator for &'a mut ($( $T, )+) impl
|
D | mod.rs | 214 pub trait IntoParallelIterator { trait 859 PI: IntoParallelIterator, in flat_map() 927 Self::Item: IntoParallelIterator, in flatten() 2466 Z: IntoParallelIterator, in zip() 2494 Z: IntoParallelIterator, in zip_eq() 2712 I: IntoParallelIterator, in partial_cmp() 2738 I: IntoParallelIterator, in eq() 2755 I: IntoParallelIterator, in ne() 2766 I: IntoParallelIterator, in lt() 2777 I: IntoParallelIterator, in le() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/rayon/src/ |
D | array.rs | 14 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
|
D | result.rs | 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
|
D | option.rs | 99 impl<'a, T: Sync> IntoParallelIterator for &'a Option<T> { impl 129 impl<'a, T: Send> IntoParallelIterator for &'a mut Option<T> { impl
|
D | vec.rs | 18 impl<'data, T: Sync + 'data> IntoParallelIterator for &'data Vec<T> { impl 27 impl<'data, T: Send + 'data> IntoParallelIterator for &'data mut Vec<T> { impl
|
/aosp_15_r20/external/rust/android-crates-io/crates/indexmap/src/ |
D | rustc.rs | 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 131 impl<'a, T, S> IntoParallelIterator for &'a IndexSet<T, S> impl
|
/aosp_15_r20/external/rust/android-crates-io/crates/rayon/tests/ |
D | producer_split_at.rs | 8 I: IntoParallelIterator, in check() 42 I: IntoParallelIterator, in forward() 57 I: IntoParallelIterator, in reverse()
|
/aosp_15_r20/external/rust/android-crates-io/crates/hashbrown/src/external_trait_impls/rayon/ |
D | map.rs | 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 458 I: IntoParallelIterator, in extend()
|
/aosp_15_r20/external/rust/android-crates-io/crates/rayon/src/collections/ |
D | vec_deque.rs | 51 impl<'a, T: Sync> IntoParallelIterator for &'a VecDeque<T> { impl 74 impl<'a, T: Send> IntoParallelIterator for &'a mut VecDeque<T> { impl
|
/aosp_15_r20/external/rust/android-crates-io/crates/dashmap/src/rayon/ |
D | map.rs | 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
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/ |
H A D | table.rs | 185 impl<'a, T: Sync, A: Allocator> IntoParallelIterator for &'a HashTable<T, A> { impl 198 impl<'a, T: Send, A: Allocator> IntoParallelIterator for &'a mut HashTable<T, A> { impl
|
H A D | map.rs | 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 448 I: IntoParallelIterator, in extend()
|
H A D | set.rs | 316 impl<'a, T: Sync, S, A: Allocator> IntoParallelIterator for &'a HashSet<T, S, A> { impl 378 I: IntoParallelIterator, in extend()
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/ |
H A D | table.rs | 185 impl<'a, T: Sync, A: Allocator> IntoParallelIterator for &'a HashTable<T, A> { impl 198 impl<'a, T: Send, A: Allocator> IntoParallelIterator for &'a mut HashTable<T, A> { impl
|
H A D | map.rs | 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 448 I: IntoParallelIterator, in extend()
|
H A D | set.rs | 316 impl<'a, T: Sync, S, A: Allocator> IntoParallelIterator for &'a HashSet<T, S, A> { impl 378 I: IntoParallelIterator, in extend()
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/ |
H A D | table.rs | 185 impl<'a, T: Sync, A: Allocator> IntoParallelIterator for &'a HashTable<T, A> { impl 198 impl<'a, T: Send, A: Allocator> IntoParallelIterator for &'a mut HashTable<T, A> { impl
|
H A D | map.rs | 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 448 I: IntoParallelIterator, in extend()
|
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/ |
H A D | table.rs | 185 impl<'a, T: Sync, A: Allocator> IntoParallelIterator for &'a HashTable<T, A> { impl 198 impl<'a, T: Send, A: Allocator> IntoParallelIterator for &'a mut HashTable<T, A> { impl
|
H A D | map.rs | 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 448 I: IntoParallelIterator, in extend()
|
H A D | set.rs | 316 impl<'a, T: Sync, S, A: Allocator> IntoParallelIterator for &'a HashSet<T, S, A> { impl 378 I: IntoParallelIterator, in extend()
|
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/vendor/hashbrown/src/external_trait_impls/rayon/ |
H A D | table.rs | 185 impl<'a, T: Sync, A: Allocator> IntoParallelIterator for &'a HashTable<T, A> { impl 198 impl<'a, T: Send, A: Allocator> IntoParallelIterator for &'a mut HashTable<T, A> { impl
|
H A D | map.rs | 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 448 I: IntoParallelIterator, in extend()
|
H A D | set.rs | 316 impl<'a, T: Sync, S, A: Allocator> IntoParallelIterator for &'a HashSet<T, S, A> { impl 378 I: IntoParallelIterator, in extend()
|