/external/rust/crates/bytes/src/buf/ |
D | iter.rs | 26 pub struct IntoIter<T> { struct 30 impl<T> IntoIter<T> { impl 46 pub(crate) fn new(inner: T) -> IntoIter<T> { in new() 47 IntoIter { inner } in new() 112 impl<T: Buf> Iterator for IntoIter<T> { implementation 132 impl<T: Buf> ExactSizeIterator for IntoIter<T> {} implementation
|
D | chain.rs | 1 use crate::buf::{IntoIter, UninitSlice}; 217 type IntoIter = IntoIter<Chain<T, U>>; typedef 219 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 220 IntoIter::new(self) in into_iter()
|
/external/rust/crates/rayon/src/ |
D | option.rs | 22 pub struct IntoIter<T: Send> { struct 28 type Iter = IntoIter<T>; argument 31 IntoIter { opt: self } in into_par_iter() 35 impl<T: Send> ParallelIterator for IntoIter<T> { implementation 50 impl<T: Send> IndexedParallelIterator for IntoIter<T> { implementation 88 inner: IntoIter<&'a T>, 126 inner: IntoIter<&'a mut T>, 152 type IntoIter = std::option::IntoIter<T>; typedef 154 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
D | result.rs | 16 pub struct IntoIter<T: Send> { struct 17 inner: option::IntoIter<T>, argument 22 type Iter = IntoIter<T>; 25 IntoIter { in into_par_iter() 32 IntoIter<T> => T, 39 inner: option::IntoIter<&'a T>, 69 inner: option::IntoIter<&'a mut T>,
|
D | vec.rs | 19 pub struct IntoIter<T: Send> { struct 25 type Iter = IntoIter<T>; argument 28 IntoIter { vec: self } in into_par_iter() 32 impl<T: Send> ParallelIterator for IntoIter<T> { implementation 47 impl<T: Send> IndexedParallelIterator for IntoIter<T> { implementation 175 type IntoIter = SliceDrain<'data, T>; typedef 177 fn into_iter(mut self) -> Self::IntoIter { in into_iter() argument
|
/external/rust/crates/itertools/src/ |
D | free.rs | 10 type VecIntoIter<T> = alloc::vec::IntoIter<T>; 49 pub fn enumerate<I>(iterable: I) -> iter::Enumerate<I::IntoIter> in enumerate() 66 pub fn rev<I>(iterable: I) -> iter::Rev<I::IntoIter> in rev() 68 I::IntoIter: DoubleEndedIterator in rev() 85 pub fn zip<I, J>(i: I, j: J) -> Zip<I::IntoIter, J::IntoIter> in zip() argument 103 …hain<I, J>(i: I, j: J) -> iter::Chain<<I as IntoIterator>::IntoIter, <J as IntoIterator>::IntoIter> in chain() argument 119 pub fn cloned<'a, I, T: 'a>(iterable: I) -> iter::Cloned<I::IntoIter> in cloned()
|
/external/rust/crates/rayon/src/collections/ |
D | linked_list.rs | 14 pub struct IntoIter<T: Send> { struct 15 inner: vec::IntoIter<T>, argument 19 LinkedList<T> => IntoIter<T>, 24 IntoIter<T> => T, 31 inner: vec::IntoIter<&'a T>, 55 inner: vec::IntoIter<&'a mut T>,
|
D | btree_set.rs | 14 pub struct IntoIter<T: Ord + Send> { struct 15 inner: vec::IntoIter<T>, argument 19 BTreeSet<T> => IntoIter<T>, 24 IntoIter<T> => T, 31 inner: vec::IntoIter<&'a T>,
|
D | btree_map.rs | 14 pub struct IntoIter<K: Ord + Send, V: Send> { struct 15 inner: vec::IntoIter<(K, V)>, argument 19 BTreeMap<K, V> => IntoIter<K, V>, 24 IntoIter<K, V> => (K, V), 31 inner: vec::IntoIter<(&'a K, &'a V)>, 55 inner: vec::IntoIter<(&'a K, &'a mut V)>,
|
D | hash_set.rs | 16 pub struct IntoIter<T: Hash + Eq + Send> { struct 17 inner: vec::IntoIter<T>, argument 21 HashSet<T, S> => IntoIter<T>, 26 IntoIter<T> => T, 33 inner: vec::IntoIter<&'a T>, 60 inner: vec::IntoIter<T>,
|
D | hash_map.rs | 16 pub struct IntoIter<K: Hash + Eq + Send, V: Send> { struct 17 inner: vec::IntoIter<(K, V)>, argument 21 HashMap<K, V, S> => IntoIter<K, V>, 26 IntoIter<K, V> => (K, V), 33 inner: vec::IntoIter<(&'a K, &'a V)>, 57 inner: vec::IntoIter<(&'a K, &'a mut V)>, 74 inner: vec::IntoIter<(K, V)>,
|
D | binary_heap.rs | 14 pub struct IntoIter<T: Ord + Send> { struct 15 inner: vec::IntoIter<T>, argument 20 type Iter = IntoIter<T>; 23 IntoIter { in into_par_iter() 30 IntoIter<T> => T, 37 inner: vec::IntoIter<&'a T>,
|
D | vec_deque.rs | 17 pub struct IntoIter<T: Send> { struct 18 inner: vec::IntoIter<T>, argument 23 type Iter = IntoIter<T>; 28 IntoIter { inner } in into_par_iter() 33 IntoIter<T> => T,
|
/external/rust/crates/weak-table/src/ |
D | weak_hash_set.rs | 169 pub struct IntoIter<T>(base::IntoIter<T, ()>); struct 171 impl<T: WeakElement> Iterator for IntoIter<T> { implementation 256 type IntoIter = IntoIter<T>; typedef 258 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 259 IntoIter(self.0.into_iter()) in into_iter() 265 type IntoIter = Iter<'a, T>; typedef 267 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
D | ptr_weak_hash_set.rs | 142 pub struct IntoIter<T>(base::IntoIter<ByPtr<T>, ()>); struct 144 impl<T: WeakElement> Iterator for IntoIter<T> { implementation 240 type IntoIter = IntoIter<T>; typedef 242 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 243 IntoIter(self.0.into_iter()) in into_iter() 251 type IntoIter = Iter<'a, T>; typedef 253 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
/external/rust/crates/syn/src/ |
D | error.rs | 358 type IntoIter = IntoIter; typedef 360 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 361 IntoIter { in into_iter() 367 pub struct IntoIter { struct 368 messages: vec::IntoIter<ErrorMessage>, argument 371 impl Iterator for IntoIter { implementation 383 type IntoIter = Iter<'a>; typedef 385 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
D | punctuated.rs | 491 type IntoIter = IntoIter<T>; typedef 493 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 498 IntoIter { in into_iter() 506 type IntoIter = Iter<'a, T>; typedef 508 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 515 type IntoIter = IterMut<'a, T>; typedef 517 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 535 last: option::IntoIter<&'a T>, 585 last: option::IntoIter<&'a mut T>, 624 inner: vec::IntoIter<(T, P)>, [all …]
|
/external/rust/crates/tokio/src/net/ |
D | addr.rs | 54 type Iter = std::option::IntoIter<SocketAddr>; 68 type Iter = std::option::IntoIter<SocketAddr>; 81 type Iter = std::option::IntoIter<SocketAddr>; 94 type Iter = std::option::IntoIter<SocketAddr>; 108 type Iter = std::option::IntoIter<SocketAddr>; 122 type Iter = std::option::IntoIter<SocketAddr>; 136 type Iter = std::vec::IntoIter<SocketAddr>; 273 Blocking(JoinHandle<io::Result<vec::IntoIter<SocketAddr>>>), 279 One(option::IntoIter<SocketAddr>), 280 More(vec::IntoIter<SocketAddr>),
|
/external/rust/crates/lru-cache/src/ |
D | lib.rs | 323 type IntoIter = IntoIter<K, V>; typedef 325 fn into_iter(self) -> IntoIter<K, V> { in into_iter() 326 IntoIter(self.map.into_iter()) in into_iter() 332 type IntoIter = Iter<'a, K, V>; typedef 338 type IntoIter = IterMut<'a, K, V>; typedef 366 pub struct IntoIter<K, V>(linked_hash_map::IntoIter<K, V>); struct 368 impl<K, V> Iterator for IntoIter<K, V> { implementation 380 impl<K, V> DoubleEndedIterator for IntoIter<K, V> { implementation 386 impl<K, V> ExactSizeIterator for IntoIter<K, V> { implementation
|
/external/rust/crates/rayon/src/iter/ |
D | len.rs | 103 type IntoIter = P::IntoIter; typedef 105 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 237 type IntoIter = P::IntoIter; typedef 239 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
/external/rust/crates/protobuf/src/ |
D | singular.rs | 133 pub fn iter<'a>(&'a self) -> option::IntoIter<&'a T> { in iter() 139 pub fn mut_iter<'a>(&'a mut self) -> option::IntoIter<&'a mut T> { in mut_iter() 312 pub fn iter<'a>(&'a self) -> option::IntoIter<&'a T> { in iter() 318 pub fn mut_iter<'a>(&'a mut self) -> option::IntoIter<&'a mut T> { in mut_iter() 490 type IntoIter = option::IntoIter<&'a T>; typedef 492 fn into_iter(self) -> option::IntoIter<&'a T> { in into_iter() 499 type IntoIter = option::IntoIter<&'a T>; typedef 501 fn into_iter(self) -> option::IntoIter<&'a T> { in into_iter()
|
/external/rust/crates/serde_json/src/ |
D | map.rs | 754 type IntoIter = Iter<'a>; typedef 756 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 779 type IntoIter = IterMut<'a>; typedef 781 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 804 type IntoIter = IntoIter; typedef 806 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 807 IntoIter { in into_iter() 814 pub struct IntoIter { struct 819 type IntoIterImpl = btree_map::IntoIter<String, Value>; 821 type IntoIterImpl = indexmap::map::IntoIter<String, Value>; [all …]
|
/external/rust/crates/regex/src/ |
D | re_set.rs | 301 type IntoIter = SetMatchesIntoIter; 304 fn into_iter(self) -> Self::IntoIter { 310 type IntoIter = SetMatchesIter<'a>; 313 fn into_iter(self) -> Self::IntoIter { 324 pub struct SetMatchesIntoIter(iter::Enumerate<vec::IntoIter<bool>>);
|
/external/rust/crates/walkdir/src/ |
D | lib.rs | 515 type IntoIter = IntoIter; typedef 517 fn into_iter(self) -> IntoIter { in into_iter() argument 518 IntoIter { in into_iter() 543 pub struct IntoIter { struct 653 Closed(vec::IntoIter<Result<DirEntry>>), 656 impl Iterator for IntoIter { implementation 714 impl IntoIter { impl 1032 impl<P> Iterator for FilterEntry<IntoIter, P> 1061 impl<P> FilterEntry<IntoIter, P>
|
/external/rust/crates/thread_local/src/ |
D | lib.rs | 316 type IntoIter = IntoIter<T>; typedef 318 fn into_iter(self) -> IntoIter<T> { in into_iter() 319 IntoIter { in into_iter() 328 type IntoIter = Iter<'a, T>; typedef 330 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 337 type IntoIter = IterMut<'a, T>; typedef 494 pub struct IntoIter<T: Send> { struct 499 impl<T: Send> Iterator for IntoIter<T> { argument 514 impl<T: Send> ExactSizeIterator for IntoIter<T> {} implementation 515 impl<T: Send> FusedIterator for IntoIter<T> {} implementation
|