/external/rust/crates/serde_derive/src/internals/ |
D | receiver.rs | 7 parse_quote, Data, DeriveInput, Expr, ExprPath, GenericArgument, GenericParam, Generics, Macro, 99 fn visit_expr_path_mut(&mut self, expr: &mut ExprPath) { in visit_expr_path_mut() argument 164 fn visit_expr_path_mut_impl(&mut self, expr: &mut ExprPath) { in visit_expr_path_mut_impl() argument
|
D | attr.rs | 853 serialize_with: Option<syn::ExprPath>, 854 deserialize_with: Option<syn::ExprPath>, 1097 pub fn serialize_with(&self) -> Option<&syn::ExprPath> { in serialize_with() argument 1101 pub fn deserialize_with(&self) -> Option<&syn::ExprPath> { in deserialize_with() argument 1111 skip_serializing_if: Option<syn::ExprPath>, 1113 serialize_with: Option<syn::ExprPath>, 1114 deserialize_with: Option<syn::ExprPath>, 1118 getter: Option<syn::ExprPath>, 1130 Path(syn::ExprPath), 1381 let expr = syn::ExprPath { in from_ast() [all …]
|
/external/rust/crates/async-trait/src/ |
D | receiver.rs | 5 Block, ExprPath, Ident, Item, Macro, Pat, PatIdent, PatPath, Path, Receiver, Signature, Token, 58 fn visit_expr_path_mut(&mut self, expr: &mut ExprPath) { in visit_expr_path_mut() argument
|
/external/rust/crates/pin-project-internal/src/ |
D | utils.rs | 11 Attribute, ExprPath, ExprStruct, Generics, Ident, Item, Lifetime, LifetimeDef, Macro, PatPath, 314 fn visit_expr_path_mut(&mut self, expr: &mut ExprPath) { in visit_expr_path_mut() argument
|
/external/rust/crates/syn/src/ |
D | expr.rs | 180 Path(ExprPath), 608 pub struct ExprPath { 814 | Expr::Path(ExprPath { attrs, .. }) in replace_attrs() 1802 let expr: ExprPath = input.parse()?; in path_or_macro_or_struct() 2591 let value = Expr::Path(ExprPath { in parse() 2758 impl Parse for ExprPath { implementation 2767 Ok(ExprPath { attrs, qself, path }) in parse() 3312 impl ToTokens for ExprPath { implementation
|
D | lib.rs | 352 ExprParen, ExprPath, ExprRange, ExprReference, ExprRepeat, ExprReturn, ExprStruct, ExprTry,
|
D | pat.rs | 570 lo: Box::new(Expr::Path(ExprPath { in pat_range()
|
/external/rust/crates/serde_derive/src/ |
D | ser.rs | 1156 serialize_with: &syn::ExprPath, in wrap_serialize_field_with() argument 1164 serialize_with: &syn::ExprPath, in wrap_serialize_variant_with() argument 1191 serialize_with: &syn::ExprPath, in wrap_serialize_with() argument
|
D | de.rs | 2840 deserialize_with: &syn::ExprPath, in wrap_deserialize_with() argument 2876 deserialize_with: &syn::ExprPath, in wrap_deserialize_field_with() argument 2884 deserialize_with: &syn::ExprPath, in wrap_deserialize_variant_with() argument
|
/external/rust/crates/syn/src/gen/ |
D | fold.rs | 208 fn fold_expr_path(&mut self, i: ExprPath) -> ExprPath { in fold_expr_path() argument 1387 pub fn fold_expr_path<F>(f: &mut F, node: ExprPath) -> ExprPath in fold_expr_path() 1391 ExprPath { in fold_expr_path()
|
D | clone.rs | 586 impl Clone for ExprPath { implementation 588 ExprPath { in clone()
|
D | eq.rs | 589 impl Eq for ExprPath {} implementation 592 impl PartialEq for ExprPath { implementation
|
D | visit_mut.rs | 211 fn visit_expr_path_mut(&mut self, i: &mut ExprPath) { in visit_expr_path_mut() argument 1572 pub fn visit_expr_path_mut<V>(v: &mut V, node: &mut ExprPath) in visit_expr_path_mut()
|
D | visit.rs | 207 fn visit_expr_path(&mut self, i: &'ast ExprPath) { in visit_expr_path() argument 1568 pub fn visit_expr_path<'ast, V>(v: &mut V, node: &'ast ExprPath) in visit_expr_path()
|
D | hash.rs | 810 impl Hash for ExprPath { implementation
|
D | debug.rs | 900 impl Debug for ExprPath { implementation
|
/external/rust/crates/syn/tests/debug/ |
D | gen.rs | 1576 impl Debug for Lite<syn::ExprPath> {
|