Lines Matching refs:allow_plus

300             let allow_plus = true;  in parse()  localVariable
302 ambig_ty(input, allow_plus, allow_group_generic) in parse()
314 let allow_plus = false; in without_plus() localVariable
316 ambig_ty(input, allow_plus, allow_group_generic) in without_plus()
322 allow_plus: bool, in ambig_ty()
440 if allow_plus && input.peek(Token![+]) { in ambig_ty()
535 if lifetimes.is_some() || allow_plus && input.peek(Token![+]) { in ambig_ty()
543 if allow_plus { in ambig_ty()
572 let bounds = TypeTraitObject::parse_bounds(dyn_span, input, allow_plus)?; in ambig_ty()
605 TypeImplTrait::parse(input, allow_plus).map(Type::ImplTrait) in ambig_ty()
794 let allow_plus = false; in without_plus() localVariable
795 Self::parse(input, allow_plus) in without_plus()
798 pub(crate) fn parse(input: ParseStream, allow_plus: bool) -> Result<Self> { in parse()
802 let ty = ambig_ty(input, allow_plus, allow_group_generic)?; in parse()
813 let allow_plus = true; in parse() localVariable
814 Self::parse(input, allow_plus) in parse()
821 let allow_plus = true; in parse() localVariable
822 Self::parse(input, allow_plus) in parse()
829 let allow_plus = false; in without_plus() localVariable
830 Self::parse(input, allow_plus) in without_plus()
834 pub(crate) fn parse(input: ParseStream, allow_plus: bool) -> Result<Self> { in parse()
840 let bounds = Self::parse_bounds(dyn_span, input, allow_plus)?; in parse()
847 allow_plus: bool, in parse_bounds()
853 allow_plus, in parse_bounds()
885 let allow_plus = true; in parse() localVariable
886 Self::parse(input, allow_plus) in parse()
893 let allow_plus = false; in without_plus() localVariable
894 Self::parse(input, allow_plus) in without_plus()
897 pub(crate) fn parse(input: ParseStream, allow_plus: bool) -> Result<Self> { in parse()
903 allow_plus, in parse()
962 let allow_plus = false; in parse() localVariable
963 Self::parse(input, allow_plus) in parse()
968 fn parse(input: ParseStream, allow_plus: bool) -> Result<Self> { in parse()
974 ambig_ty(&content, allow_plus, allow_group_generic)? in parse()