Lines Matching refs:ident
23 //! pub ident: Ident,
59 //! ident: input.parse()?,
212 ($display:literal $ty:ident $get:ident) => {
248 ($($token:literal pub struct $name:ident)*) => {
350 ($name:ident/1) => {
366 ($name:ident/$len:literal) => {};
370 ($($token:literal pub struct $name:ident/$len:tt #[doc = $usage:literal])*) => {
447 ($($token:literal pub struct $name:ident/$len:tt #[doc = $usage:literal])*) => {
489 ($($delim:ident pub struct $name:ident #[$doc:meta])*) => {
583 if let Some((ident, rest)) = cursor.ident() {
584 if ident == "_" {
585 return Ok((Underscore(ident.span()), rest));
601 if let Some((ident, _rest)) = cursor.ident() {
602 return ident == "_";
859 /// ident: Ident,
866 /// let ident: Ident = input.parse()?;
868 /// Ok(UnitStruct { struct_token, ident, semi_token })
882 /// # ident: Ident,
896 /// ident: name,
1027 if let Some((ident, rest)) = cursor.ident() {
1028 if ident == token {
1029 return Ok((ident.span(), rest));
1037 if let Some((ident, _rest)) = cursor.ident() {
1038 ident == token