| /external/rust/crates/rayon/src/ |
| D | result.rs | 22 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()
|
| D | option.rs | 28 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()
|
| D | range_inclusive.rs | 46 pub struct Iter<T> { struct 50 impl<T> Iter<T> argument 80 type Iter = Iter<T>; typedef 82 fn into_par_iter(self) -> Self::Iter { in into_par_iter() 125 impl<T: RangeInteger> ParallelIterator for Iter<T> { implementation 141 impl<T: IndexedRangeInteger> IndexedParallelIterator for Iter<T> { implementation 265 impl ParallelIterator for Iter<char> { implementation 281 impl IndexedParallelIterator for Iter<char> { implementation
|
| D | array.rs | 20 type Iter = Iter<'data, T>; typedef 22 fn into_par_iter(self) -> Self::Iter { in into_par_iter() 30 type Iter = IterMut<'data, T>; typedef 32 fn into_par_iter(self) -> Self::Iter { in into_par_iter() 40 type Iter = IntoIter<T, N>; typedef 42 fn into_par_iter(self) -> Self::Iter { in into_par_iter()
|
| D | range.rs | 48 pub struct Iter<T> { struct 55 Iter<T>: ParallelIterator, argument 58 type Iter = Iter<T>; typedef 60 fn into_par_iter(self) -> Self::Iter { in into_par_iter() 119 impl<T: RangeInteger> ParallelIterator for Iter<T> { implementation 135 impl<T: IndexedRangeInteger> IndexedParallelIterator for Iter<T> { implementation 323 impl ParallelIterator for Iter<char> { implementation 338 impl IndexedParallelIterator for Iter<char> { implementation
|
| D | vec.rs | 20 type Iter = Iter<'data, T>; typedef 22 fn into_par_iter(self) -> Self::Iter { in into_par_iter() 29 type Iter = IterMut<'data, T>; typedef 31 fn into_par_iter(self) -> Self::Iter { in into_par_iter() 44 type Iter = IntoIter<T>; typedef 46 fn into_par_iter(self) -> Self::Iter { in into_par_iter() 88 type Iter = Drain<'data, T>; typedef 91 fn par_drain<R: RangeBounds<usize>>(self, range: R) -> Self::Iter { in par_drain()
|
| /external/rust/crates/rayon/src/collections/ |
| D | vec_deque.rs | 23 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 …]
|
| D | hash_set.rs | 32 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()
|
| D | binary_heap.rs | 20 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()
|
| D | hash_map.rs | 32 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()
|
| D | btree_set.rs | 30 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
|
| D | btree_map.rs | 30 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
|
| D | linked_list.rs | 30 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/ |
| D | iter.rs | 9 pub struct Iter<I> { struct 14 impl<I> Unpin for Iter<I> {} implementation 43 impl<I> Stream for Iter<I> implementation
|
| /external/rust/crates/futures-util/src/stream/ |
| D | iter.rs | 9 pub struct Iter<I> { struct 13 impl<I> Unpin for Iter<I> {} implementation 36 impl<I> Stream for Iter<I> implementation
|
| /external/rust/crates/tokio/src/net/ |
| D | addr.rs | 41 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/ |
| D | map.rs | 65 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/quote/src/ |
| D | runtime.rs | 82 type Iter: Iterator; typedef 84 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter); in quote_into_iter() 88 type Iter = T::Iter; typedef 90 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter() 96 type Iter = T::Iter; typedef 98 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter() 104 type Iter = slice::Iter<'q, T>; typedef 106 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter() 112 type Iter = slice::Iter<'q, T>; typedef 114 fn quote_into_iter(&'q self) -> (Self::Iter, HasIter) { in quote_into_iter() [all …]
|
| /external/rust/crates/rustversion/src/ |
| D | token.rs | 5 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/ |
| D | events.rs | 76 pub struct Iter<'a> { struct 77 inner: &'a Events, 78 pos: usize, 203 impl<'a> Iterator for Iter<'a> { implementation
|
| /external/rust/crates/libfuzzer-sys/libfuzzer/dataflow/ |
| D | DataFlow.cpp | 121 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/rayon/src/iter/ |
| D | repeat.rs | 205 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/combine/src/parser/ |
| D | repeat.rs | 233 pub struct Iter<'a, Input, P, S, M> struct 252 impl<'a, Input, P, S, M> Iter<'a, Input, P, S, M> impl
|
| /external/rust/crates/crossbeam-epoch/src/sync/ |
| D | list.rs | 105 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
|
| /external/rust/crates/tinyvec/src-backup/ |
| D | arrayset.rs | 227 pub struct Iter<'a, T> { struct 232 impl<'a, T> ExactSizeIterator for Iter<'a, T> { argument 239 impl<'a, T> Iterator for Iter<'a, T> { implementation
|