Searched refs:IntoIter (Results 1 – 5 of 5) sorted by relevance
| /linux/rust/macros/ |
| A D | helpers.rs | 5 pub(crate) fn try_ident(it: &mut token_stream::IntoIter) -> Option<String> { in try_ident() 13 pub(crate) fn try_literal(it: &mut token_stream::IntoIter) -> Option<String> { in try_literal() 21 pub(crate) fn try_string(it: &mut token_stream::IntoIter) -> Option<String> { in try_string() 37 pub(crate) fn expect_ident(it: &mut token_stream::IntoIter) -> String { in expect_ident() 41 pub(crate) fn expect_punct(it: &mut token_stream::IntoIter) -> char { in expect_punct() 49 pub(crate) fn expect_string(it: &mut token_stream::IntoIter) -> String { in expect_string() 53 pub(crate) fn expect_string_ascii(it: &mut token_stream::IntoIter) -> String { in expect_string_ascii() 59 pub(crate) fn expect_group(it: &mut token_stream::IntoIter) -> Group { in expect_group() 67 pub(crate) fn expect_end(it: &mut token_stream::IntoIter) { in expect_end() argument
|
| A D | concat_idents.rs | 7 fn expect_ident(it: &mut token_stream::IntoIter) -> Ident { in expect_ident()
|
| A D | module.rs | 7 fn expect_string_array(it: &mut token_stream::IntoIter) -> Vec<String> { in expect_string_array() 104 fn parse(it: &mut token_stream::IntoIter) -> Self { in parse()
|
| /linux/rust/kernel/ |
| A D | list.rs | 650 type IntoIter = Iter<'a, T, ID>; typedef 659 pub struct IntoIter<T: ?Sized + ListItem<ID>, const ID: u64 = 0> { struct 663 impl<T: ?Sized + ListItem<ID>, const ID: u64> Iterator for IntoIter<T, ID> { argument 671 impl<T: ?Sized + ListItem<ID>, const ID: u64> FusedIterator for IntoIter<T, ID> {} implementation 673 impl<T: ?Sized + ListItem<ID>, const ID: u64> DoubleEndedIterator for IntoIter<T, ID> { implementation 680 type IntoIter = IntoIter<T, ID>; typedef 683 fn into_iter(self) -> IntoIter<T, ID> { in into_iter() 684 IntoIter { list: self } in into_iter()
|
| A D | rbtree.rs | 934 type IntoIter = Iter<'a, K, V>; typedef 936 fn into_iter(self) -> Self::IntoIter { in into_iter() argument 968 type IntoIter = IterMut<'a, K, V>; typedef 970 fn into_iter(self) -> Self::IntoIter { in into_iter() argument
|
Completed in 14 milliseconds