Lines Matching refs:Ident
7 use crate::ident::Ident;
68 Ident: PartialEq<I>, in is_ident()
84 pub fn get_ident(&self) -> Option<&Ident> { in get_ident() argument
98 pub fn require_ident(&self) -> Result<&Ident> { in require_ident() argument
113 pub ident: Ident,
120 T: Into<Ident>,
215 pub ident: Ident,
227 pub ident: Ident,
238 pub ident: Ident,
294 use crate::ident::Ident;
419 if input.peek(Ident) { in const_argument()
420 let ident: Ident = input.parse()?; in const_argument()
523 let ident = input.call(Ident::parse_any)?; in parse_helper()
528 input.call(Ident::parse_any)? in parse_helper()
587 if !input.peek(Ident) in parse_mod_style()
595 let ident = Ident::parse_any(input)?; in parse_mod_style()
604 return Err(input.parse::<Ident>().unwrap_err()); in parse_mod_style()