Searched refs:parse_single (Results 1 – 7 of 7) sorted by relevance
| /linux/rust/syn/ |
| H A D | pat.rs | 289 pub fn parse_single(input: ParseStream) -> Result<Self> { in parse_single() method 392 pat: Box::new(Pat::parse_single(input)?), in parse() 400 let mut pat = Pat::parse_single(input)?; in multi_pat_impl() 409 let pat = Pat::parse_single(input)?; in multi_pat_impl() 467 Pat::parse_single(input)?; in pat_box() 486 let subpat = Pat::parse_single(input)?; in pat_ident() 680 pat: Box::new(Pat::parse_single(input)?), in pat_reference()
|
| H A D | generics.rs | 716 TypeParamBound::parse_single(input, allow_precise_capture, allow_const)? in parse() 749 Self::parse_single(input, allow_precise_capture, allow_const) in parse() 754 pub(crate) fn parse_single( in parse_single() method 805 let bound = Self::parse_single(input, allow_precise_capture, allow_const)?; in parse_multiple() 1027 TypeParamBound::parse_single( in parse()
|
| H A D | ty.rs | 410 TypeParamBound::parse_single( in ambig_ty() 486 TypeParamBound::parse_single( in ambig_ty() 557 TypeParamBound::parse_single(input, allow_precise_capture, allow_const)? in ambig_ty()
|
| H A D | stmt.rs | 288 let mut pat = Pat::parse_single(input)?; in stmt_local()
|
| H A D | item.rs | 1214 TypeParamBound::parse_single(input, allow_precise_capture, allow_const)? in parse_optional_bounds() 1630 let pat = Box::new(Pat::parse_single(input)?); in parse_fn_arg_or_variadic() 2235 TypeParamBound::parse_single(input, allow_precise_capture, allow_const)? in parse_rest_of_trait() 2307 TypeParamBound::parse_single(input, allow_precise_capture, allow_const)? in parse_rest_of_trait_alias()
|
| H A D | path.rs | 385 TypeParamBound::parse_single( in parse()
|
| H A D | expr.rs | 2606 let mut pat = Pat::parse_single(input)?; in closure_arg()
|