/external/rust/crates/bytes/src/buf/ |
D | iter.rs | 26 pub struct IntoIter<T> { struct 30 impl<T> IntoIter<T> { argument 112 impl<T: Buf> Iterator for IntoIter<T> { implementation 132 impl<T: Buf> ExactSizeIterator for IntoIter<T> {} implementation
|
/external/rust/crates/walkdir/src/ |
D | lib.rs | 515 type IntoIter = IntoIter; typedef 517 fn into_iter(self) -> IntoIter { in into_iter() 543 pub struct IntoIter { struct 545 opts: WalkDirOptions, 550 start: Option<PathBuf>, 556 stack_list: Vec<DirList>, 563 stack_path: Vec<Ancestor>, 568 oldest_opened: usize, 571 depth: usize, 575 deferred_dirs: Vec<DirEntry>, [all …]
|
/external/rust/crates/rayon/src/ |
D | option.rs | 22 pub struct IntoIter<T: Send> { struct 28 type Iter = IntoIter<T>; argument 35 impl<T: Send> ParallelIterator for IntoIter<T> { implementation 50 impl<T: Send> IndexedParallelIterator for IntoIter<T> { implementation 152 type IntoIter = std::option::IntoIter<T>; typedef 154 fn into_iter(self) -> Self::IntoIter { in into_iter()
|
D | vec.rs | 19 pub struct IntoIter<T: Send> { struct 25 type Iter = IntoIter<T>; argument 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()
|
/external/rust/crates/plotters/src/element/ |
D | composable.rs | 40 type IntoIter = Once<&'a Coord>; typedef 41 fn point_iter(self) -> Self::IntoIter { in point_iter() 68 type IntoIter = Once<&'b Coord>; typedef 69 fn point_iter(self) -> Self::IntoIter { in point_iter() 136 type IntoIter = Once<&'b Coord>; typedef 137 fn point_iter(self) -> Self::IntoIter { in point_iter()
|
D | basic_shapes.rs | 22 type IntoIter = std::iter::Once<&'a Coord>; typedef 23 fn point_iter(self) -> Self::IntoIter { in point_iter() 85 type IntoIter = &'a [Coord]; typedef 157 type IntoIter = &'a [Coord]; typedef 249 type IntoIter = std::iter::Once<&'a Coord>; typedef 310 type IntoIter = &'a [Coord]; typedef
|
D | mod.rs | 228 type IntoIter: IntoIterator<Item = Self::Point>; typedef 231 fn point_iter(self) -> Self::IntoIter; in point_iter()
|
/external/rust/crates/rayon/src/collections/ |
D | btree_set.rs | 14 pub struct IntoIter<T: Ord + Send> { struct 15 inner: vec::IntoIter<T>, argument
|
D | btree_map.rs | 14 pub struct IntoIter<K: Ord + Send, V: Send> { struct 15 inner: vec::IntoIter<(K, V)>, argument
|
D | linked_list.rs | 14 pub struct IntoIter<T: Send> { struct 15 inner: vec::IntoIter<T>, argument
|
D | hash_set.rs | 16 pub struct IntoIter<T: Hash + Eq + Send> { struct 17 inner: vec::IntoIter<T>, argument
|
D | hash_map.rs | 16 pub struct IntoIter<K: Hash + Eq + Send, V: Send> { struct 17 inner: vec::IntoIter<(K, V)>, argument
|
/external/rust/crates/syn/src/ |
D | error.rs | 358 type IntoIter = IntoIter; typedef 360 fn into_iter(self) -> Self::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()
|
D | data.rs | 119 type IntoIter = punctuated::IntoIter<Field>; typedef 121 fn into_iter(self) -> Self::IntoIter { in into_iter() 132 type IntoIter = punctuated::Iter<'a, Field>; typedef 134 fn into_iter(self) -> Self::IntoIter { in into_iter() 141 type IntoIter = punctuated::IterMut<'a, Field>; typedef 143 fn into_iter(self) -> Self::IntoIter { in into_iter()
|
/external/rust/crates/weak-table/src/ |
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() 251 type IntoIter = Iter<'a, T>; typedef 253 fn into_iter(self) -> Self::IntoIter { in into_iter()
|
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() 265 type IntoIter = Iter<'a, T>; typedef 267 fn into_iter(self) -> Self::IntoIter { in into_iter()
|
D | ptr_weak_key_hash_map.rs | 284 type IntoIter = IntoIter<ByPtr<K>, V>; typedef 286 fn into_iter(self) -> Self::IntoIter { in into_iter() 293 type IntoIter = Iter<'a, ByPtr<K>, V>; typedef 295 fn into_iter(self) -> Self::IntoIter { in into_iter() 302 type IntoIter = IterMut<'a, ByPtr<K>, V>; typedef 304 fn into_iter(self) -> Self::IntoIter { in into_iter()
|
/external/rust/crates/thread_local/src/ |
D | lib.rs | 316 type IntoIter = IntoIter<T>; typedef 328 type IntoIter = Iter<'a, T>; typedef 330 fn into_iter(self) -> Self::IntoIter { in into_iter() 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
|
/external/rust/crates/ahash/src/ |
D | hash_map.rs | 274 type IntoIter = hash_map::Iter<'a, K, V>; typedef 275 fn into_iter(self) -> Self::IntoIter { in into_iter() 282 type IntoIter = hash_map::IterMut<'a, K, V>; typedef 283 fn into_iter(self) -> Self::IntoIter { in into_iter() 290 type IntoIter = hash_map::IntoIter<K, V>; typedef 291 fn into_iter(self) -> Self::IntoIter { in into_iter()
|
/external/rust/crates/lru-cache/src/ |
D | lib.rs | 323 type IntoIter = IntoIter<K, V>; typedef 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/crosvm/cros_async/src/ |
D | queue.rs | 43 type IntoIter = RunnableQueueIter<'q>; typedef 45 fn into_iter(self) -> Self::IntoIter { in into_iter()
|
/external/rust/crates/regex-automata/src/ |
D | sparse_set.rs | 56 type IntoIter = slice::Iter<'a, usize>; typedef 57 fn into_iter(self) -> Self::IntoIter { in into_iter()
|
/external/rust/crates/crossbeam-channel/src/ |
D | channel.rs | 1173 type IntoIter = Iter<'a, T>; typedef 1175 fn into_iter(self) -> Self::IntoIter { in into_iter() 1182 type IntoIter = IntoIter<T>; typedef 1184 fn into_iter(self) -> Self::IntoIter { in into_iter() 1315 pub struct IntoIter<T> { struct 1319 impl<T> FusedIterator for IntoIter<T> {} implementation 1321 impl<T> Iterator for IntoIter<T> { implementation 1329 impl<T> fmt::Debug for IntoIter<T> { implementation
|
/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() 779 type IntoIter = IterMut<'a>; typedef 781 fn into_iter(self) -> Self::IntoIter { in into_iter() 804 type IntoIter = IntoIter; typedef 806 fn into_iter(self) -> Self::IntoIter { in into_iter() 814 pub struct IntoIter { struct 815 iter: IntoIterImpl, argument
|
/external/rust/crates/smallvec/src/ |
D | lib.rs | 1780 pub struct IntoIter<A: Array> { struct 1786 impl<A: Array> fmt::Debug for IntoIter<A> argument 1795 impl<A: Array + Clone> Clone for IntoIter<A> implementation 1804 impl<A: Array> Drop for IntoIter<A> { implementation 1810 impl<A: Array> Iterator for IntoIter<A> { implementation 1833 impl<A: Array> DoubleEndedIterator for IntoIter<A> { implementation 1847 impl<A: Array> ExactSizeIterator for IntoIter<A> {} implementation 1848 impl<A: Array> FusedIterator for IntoIter<A> {} implementation 1850 impl<A: Array> IntoIter<A> { implementation 1865 type IntoIter = IntoIter<A>; typedef [all …]
|