Home
last modified time | relevance | path

Searched refs:ExprPath (Results 1 – 13 of 13) sorted by relevance

/linux/rust/syn/
H A Dprecedence.rs11 ExprMatch, ExprMethodCall, ExprParen, ExprPath, ExprRepeat, ExprReturn, ExprStruct, ExprTry,
146 | Expr::Path(ExprPath { attrs, .. }) in of()
H A Dpat.rs13 ExprConst as PatConst, ExprLit as PatLit, ExprMacro as PatMacro, ExprPath as PatPath,
245 Expr, ExprConst, ExprLit, ExprMacro, ExprPath, ExprRange, Member, RangeLimits,
450 Ok(Pat::Path(ExprPath { in pat_path_or_macro_or_struct_or_range()
614 start: Some(Box::new(Expr::Path(ExprPath { in pat_range()
707 Path(ExprPath),
H A Dscan_expr.rs6 use syn::{AngleBracketedGenericArguments, BinOp, Expr, ExprPath, Lifetime, Lit, Token, Type};
239 input.parse::<ExprPath>()?; in scan_expr()
H A Dexpr.rs204 Path(ExprPath),
566 pub struct ExprPath {
738 pub const PLACEHOLDER: Self = Expr::Path(ExprPath {
954 | Expr::Path(ExprPath { attrs, .. }) in replace_attrs()
1190 ExprMethodCall, ExprParen, ExprPath, ExprReference, ExprStruct, ExprTuple, ExprUnary,
1988 Ok(Expr::Path(ExprPath { in rest_of_path_or_macro_or_struct()
2761 let value = Expr::Path(ExprPath { in parse()
2960 impl Parse for ExprPath { implementation
2970 Ok(ExprPath { attrs, qself, path }) in parse()
3138 ExprMethodCall, ExprParen, ExprPath, ExprReference, ExprStruct, ExprTuple, ExprUnary,
[all …]
H A Dpath.rs290 use crate::expr::{Expr, ExprPath};
421 return Ok(Expr::Path(ExprPath { in const_argument()
H A Dlib.rs378 ExprParen, ExprPath, ExprReference, ExprStruct, ExprUnary, FieldValue, Index, Member,
/linux/rust/syn/gen/
H A Dfold.rs276 fn fold_expr_path(&mut self, i: crate::ExprPath) -> crate::ExprPath { in fold_expr_path() argument
1776 pub fn fold_expr_path<F>(f: &mut F, node: crate::ExprPath) -> crate::ExprPath in fold_expr_path()
1780 crate::ExprPath { in fold_expr_path()
H A Dclone.rs619 impl Clone for crate::ExprPath { implementation
621 crate::ExprPath { in clone()
H A Deq.rs619 impl Eq for crate::ExprPath {} implementation
622 impl PartialEq for crate::ExprPath { implementation
H A Ddebug.rs951 impl Debug for crate::ExprPath { implementation
957 impl crate::ExprPath { implementation
H A Dvisit_mut.rs274 fn visit_expr_path_mut(&mut self, i: &mut crate::ExprPath) { in visit_expr_path_mut() argument
1747 pub fn visit_expr_path_mut<V>(v: &mut V, node: &mut crate::ExprPath) in visit_expr_path_mut()
H A Dvisit.rs266 fn visit_expr_path(&mut self, i: &'ast crate::ExprPath) { in visit_expr_path() argument
1799 pub fn visit_expr_path<'ast, V>(v: &mut V, node: &'ast crate::ExprPath) in visit_expr_path()
H A Dhash.rs849 impl Hash for crate::ExprPath { implementation