Home
last modified time | relevance | path

Searched defs:Iter (Results 1 – 25 of 450) sorted by relevance

12345678910>>...18

/external/rust/crates/rayon/src/
Dresult.rs22 type Iter = IntoIter<T>; typedef
24 fn into_par_iter(self) -> Self::Iter { in into_par_iter()
38 pub struct Iter<'a, T: Sync> { struct
39 inner: option::IntoIter<&'a T>, argument
42 impl<'a, T: Sync> Clone for Iter<'a, T> { implementation
52 type Iter = Iter<'a, T>; typedef
54 fn into_par_iter(self) -> Self::Iter { in into_par_iter()
74 type Iter = IterMut<'a, T>; typedef
76 fn into_par_iter(self) -> Self::Iter { in into_par_iter()
Drange_inclusive.rs46 pub struct Iter<T> { struct
50 impl<T> Iter<T> implementation
79 type Iter = Iter<T>; typedef
81 fn into_par_iter(self) -> Self::Iter { in into_par_iter()
187 impl ParallelIterator for Iter<char> { implementation
203 impl IndexedParallelIterator for Iter<char> { implementation
Doption.rs28 type Iter = IntoIter<T>; typedef
30 fn into_par_iter(self) -> Self::Iter { in into_par_iter()
87 pub struct Iter<'a, T: Sync> { struct
88 inner: IntoIter<&'a T>, argument
91 impl<'a, T: Sync> Clone for Iter<'a, T> { implementation
101 type Iter = Iter<'a, T>; typedef
103 fn into_par_iter(self) -> Self::Iter { in into_par_iter()
131 type Iter = IterMut<'a, T>; typedef
133 fn into_par_iter(self) -> Self::Iter { in into_par_iter()
Drange.rs47 pub struct Iter<T> { struct
53 Iter<T>: ParallelIterator, argument
56 type Iter = Iter<T>; typedef
58 fn into_par_iter(self) -> Self::Iter { in into_par_iter()
249 impl ParallelIterator for Iter<char> { implementation
264 impl IndexedParallelIterator for Iter<char> { implementation
/external/rust/crates/rayon/src/collections/
Dvec_deque.rs23 type Iter = IntoIter<T>; typedef
25 fn into_par_iter(self) -> Self::Iter { in into_par_iter()
39 pub struct Iter<'a, T: Sync> { struct
40 inner: Chain<slice::Iter<'a, T>, slice::Iter<'a, T>>, argument
43 impl<'a, T: Sync> Clone for Iter<'a, T> { implementation
53 type Iter = Iter<'a, T>; typedef
55 fn into_par_iter(self) -> Self::Iter { in into_par_iter()
76 type Iter = IterMut<'a, T>; typedef
78 fn into_par_iter(self) -> Self::Iter { in into_par_iter()
101 type Iter = Drain<'a, T>; typedef
[all …]
Dhash_set.rs32 pub struct Iter<'a, T: Hash + Eq + Sync> { struct
33 inner: vec::IntoIter<&'a T>, argument
36 impl<'a, T: Hash + Eq + Sync> Clone for Iter<'a, T> { implementation
65 type Iter = Drain<'a, T>; typedef
68 fn par_drain(self) -> Self::Iter { in par_drain()
Dbinary_heap.rs20 type Iter = IntoIter<T>; typedef
22 fn into_par_iter(self) -> Self::Iter { in into_par_iter()
36 pub struct Iter<'a, T: Ord + Sync> { struct
37 inner: vec::IntoIter<&'a T>, argument
40 impl<'a, T: Ord + Sync> Clone for Iter<'a, T> { implementation
68 type Iter = Drain<'a, T>; typedef
71 fn par_drain(self) -> Self::Iter { in par_drain()
Dhash_map.rs32 pub struct Iter<'a, K: Hash + Eq + Sync, V: Sync> { struct
33 inner: vec::IntoIter<(&'a K, &'a V)>, argument
36 impl<'a, K: Hash + Eq + Sync, V: Sync> Clone for Iter<'a, K, V> { implementation
81 type Iter = Drain<'a, K, V>; typedef
84 fn par_drain(self) -> Self::Iter { in par_drain()
Dbtree_set.rs30 pub struct Iter<'a, T: Ord + Sync> { struct
31 inner: vec::IntoIter<&'a T>, argument
34 impl<'a, T: Ord + Sync + 'a> Clone for Iter<'a, T> { implementation
Dbtree_map.rs30 pub struct Iter<'a, K: Ord + Sync, V: Sync> { struct
31 inner: vec::IntoIter<(&'a K, &'a V)>, argument
34 impl<'a, K: Ord + Sync, V: Sync> Clone for Iter<'a, K, V> { implementation
Dlinked_list.rs30 pub struct Iter<'a, T: Sync> { struct
31 inner: vec::IntoIter<&'a T>, argument
34 impl<'a, T: Sync> Clone for Iter<'a, T> { implementation
/external/rust/crates/tokio-stream/src/
Diter.rs9 pub struct Iter<I> { struct
14 impl<I> Unpin for Iter<I> {} argument
43 impl<I> Stream for Iter<I> implementation
/external/rust/crates/futures-util/src/stream/
Diter.rs9 pub struct Iter<I> { struct
13 impl<I> Unpin for Iter<I> {} implementation
37 impl<I> Stream for Iter<I> implementation
/external/rust/crates/quote/src/
Druntime.rs81 type Iter: Iterator; typedef
83 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter); in quote_into_iter()
87 type Iter = T::Iter; typedef
89 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter()
95 type Iter = T::Iter; typedef
97 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter()
103 type Iter = slice::Iter<'q, T>; typedef
105 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter()
111 type Iter = slice::Iter<'q, T>; typedef
113 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter()
[all …]
/external/rust/crates/tokio/src/net/
Daddr.rs41 type Iter = T::Iter; typedef
54 type Iter = std::option::IntoIter<SocketAddr>; typedef
68 type Iter = std::option::IntoIter<SocketAddr>; typedef
81 type Iter = std::option::IntoIter<SocketAddr>; typedef
94 type Iter = std::option::IntoIter<SocketAddr>; typedef
108 type Iter = std::option::IntoIter<SocketAddr>; typedef
122 type Iter = std::option::IntoIter<SocketAddr>; typedef
136 type Iter = std::vec::IntoIter<SocketAddr>; typedef
249 type Iter: Iterator<Item = SocketAddr> + Send + 'static; typedef
/external/rust/crates/clap/src/
Dmap.rs65 pub struct Iter<'a, V: 'a> { struct
66 inner: btree_map::Iter<'a, usize, V>,
69 impl<'a, V: 'a + Debug> Debug for Iter<'a, V> { implementation
75 impl<'a, V: 'a> Iterator for Iter<'a, V> { implementation
83 impl<'a, V: 'a> DoubleEndedIterator for Iter<'a, V> { implementation
/external/rust/crates/rustversion/src/
Dtoken.rs5 pub fn parse_punct(iter: Iter, ch: char) -> Result<()> { in parse_punct()
17 pub fn parse_optional_punct(iter: Iter, ch: char) -> Option<()> { in parse_optional_punct()
24 pub fn parse_optional_keyword(iter: Iter, keyword: &str) -> Option<Span> { in parse_optional_keyword()
/external/rust/crates/mio/src/event/
Devents.rs76 pub struct Iter<'a> { struct
77 inner: &'a Events,
78 pos: usize,
203 impl<'a> Iterator for Iter<'a> { implementation
/external/rust/crates/tokio/src/runtime/task/
Dstack.rs53 struct Iter<T: 'static>(Option<NonNull<Header>>, PhantomData<T>); in drain() struct
55 impl<T: 'static> Iterator for Iter<T> { in drain() implementation
69 impl<T: 'static> Drop for Iter<T> { in drain() implementation
/external/llvm-project/compiler-rt/lib/fuzzer/dataflow/
DDataFlow.cpp121 for (size_t Iter = 0; Iter < NumIterations; Iter++) in PrintDataFlow() local
130 for (size_t Iter = 0; Iter < NumIterations; Iter++) in PrintDataFlow() local
180 for (size_t Iter = 0; Iter < NumIterations; Iter++) in main() local
184 for (size_t Iter = 0; Iter < NumIterations; Iter++) { in main() local
/external/rust/crates/libfuzzer-sys/libfuzzer/dataflow/
DDataFlow.cpp121 for (size_t Iter = 0; Iter < NumIterations; Iter++) in PrintDataFlow() local
130 for (size_t Iter = 0; Iter < NumIterations; Iter++) in PrintDataFlow() local
180 for (size_t Iter = 0; Iter < NumIterations; Iter++) in main() local
184 for (size_t Iter = 0; Iter < NumIterations; Iter++) { in main() local
/external/rust/crates/itertools/tests/
Dspecializations.rs18 fn check_specialized<'a, V, IterItem, Iter, F>(iterator: &Iter, mapper: F) in check_specialized() argument
31 it: &Iter, in test_specializations()
/external/llvm-project/clang/test/SemaCXX/
Dco_await-range-for.cpp23 struct Iter { struct
28 IncTag<Iter> operator++(); argument
/external/rust/crates/rayon/src/iter/
Drepeat.rs205 struct Iter<T: Clone> { struct
210 impl<T: Clone> Iterator for Iter<T> { argument
229 impl<T: Clone> DoubleEndedIterator for Iter<T> { implementation
236 impl<T: Clone> ExactSizeIterator for Iter<T> { implementation
/external/rust/crates/crossbeam-epoch/src/sync/
Dlist.rs105 pub(crate) struct Iter<'g, T, C: IsElement<T>> { struct
125 pub(crate) enum IterError { argument
235 impl<'g, T: 'g, C: IsElement<T>> Iterator for Iter<'g, T, C> { implementation

12345678910>>...18