Home
last modified time | relevance | path

Searched defs:Ident (Results 1 – 20 of 20) sorted by relevance

/linux/rust/syn/
H A Dident.rs33 impl From<Token![_]> for Ident { implementation
34 fn from(token: Token![_]) -> Ident { in from()
78 impl Parse for Ident { implementation
97 impl Token for Ident { implementation
H A Dext.rs85 fn unraw(&self) -> Ident; in unraw()
88 impl IdentExt for Ident { implementation
96 fn unraw(&self) -> Ident { in unraw()
127 impl Sealed for Ident {} implementation
H A Dbuffer.rs23 Ident(Ident), enumerator
191 pub fn ident(mut self) -> Option<(Ident, Cursor<'a>)> { in ident()
H A Dpath.rs84 pub fn get_ident(&self) -> Option<&Ident> { in get_ident()
98 pub fn require_ident(&self) -> Result<&Ident> { in require_ident()
H A Dtoken.rs163 impl private::Sealed for Ident {} implementation
H A Ditem.rs2221 ident: Ident, in parse_rest_of_trait()
2280 ) -> Result<(Vec<Attribute>, Visibility, Token![trait], Ident, Generics)> { in parse_start_of_trait_alias() argument
2294 ident: Ident, in parse_rest_of_trait_alias()
H A Dlit.rs598 pub fn token(&self) -> Ident { in token()
/linux/rust/proc-macro2/
H A Dlib.rs539 Ident(Ident), enumerator
925 pub struct Ident { struct
926 inner: imp::Ident, argument
930 impl Ident { impl
1003 impl PartialEq for Ident { implementation
1009 impl<T> PartialEq<T> for Ident implementation
1018 impl Eq for Ident {} implementation
1020 impl PartialOrd for Ident { implementation
1026 impl Ord for Ident { implementation
1032 impl Hash for Ident { implementation
[all …]
H A Dwrapper.rs665 pub(crate) enum Ident { enum
670 impl Ident { impl
703 fn unwrap_nightly(self) -> proc_macro::Ident { in unwrap_nightly()
711 impl From<fallback::Ident> for Ident { implementation
717 impl PartialEq for Ident { implementation
728 impl<T> PartialEq<T> for Ident implementation
741 impl Display for Ident { implementation
750 impl Debug for Ident { implementation
H A Dfallback.rs776 pub(crate) struct Ident { struct
782 impl Ident { argument
869 impl PartialEq for Ident { implementation
875 impl<T> PartialEq<T> for Ident implementation
889 impl Display for Ident { implementation
899 impl Debug for Ident { implementation
H A Dparse.rs285 fn ident(input: Cursor) -> PResult<crate::Ident> { in ident()
298 fn ident_any(input: Cursor) -> PResult<crate::Ident> { in ident_any()
/linux/rust/macros/
H A Dconcat_idents.rs7 fn expect_ident(it: &mut token_stream::IntoIter) -> Ident { in expect_ident()
H A Dhelpers.rs74 pub(crate) fn function_name(input: TokenStream) -> Option<Ident> { in function_name()
H A Dquote.rs23 impl ToTokens for proc_macro::Ident { implementation
/linux/rust/quote/
H A Dident_fragment.rs47 impl IdentFragment for Ident { implementation
H A Druntime.rs437 pub fn mk_ident(id: &str, span: Option<Span>) -> Ident { in mk_ident()
442 fn ident_maybe_raw(id: &str, span: Span) -> Ident { in ident_maybe_raw()
H A Dto_tokens.rs241 impl ToTokens for Ident { implementation
/linux/rust/syn/gen/
H A Dvisit_mut.rs427 fn visit_ident_mut(&mut self, i: &mut proc_macro2::Ident) { in visit_ident_mut()
H A Dfold.rs444 fn fold_ident(&mut self, i: proc_macro2::Ident) -> proc_macro2::Ident { in fold_ident()
H A Dvisit.rs419 fn visit_ident(&mut self, i: &'ast proc_macro2::Ident) { in visit_ident()