Lines Matching refs:Parens
793 BalancedDelimiterTracker Parens(*this, tok::l_paren); in ParseLambdaIntroducer() local
794 Parens.consumeOpen(); in ParseLambdaIntroducer()
799 Parens.skipToEnd(); in ParseLambdaIntroducer()
802 Parens.skipToEnd(); in ParseLambdaIntroducer()
805 Parens.consumeClose(); in ParseLambdaIntroducer()
806 Init = Actions.ActOnParenListExpr(Parens.getOpenLocation(), in ParseLambdaIntroducer()
807 Parens.getCloseLocation(), in ParseLambdaIntroducer()
2787 BalancedDelimiterTracker Parens(*this, tok::l_paren); in ParseTypeTrait() local
2788 if (Parens.expectAndConsume(diag::err_expected_lparen)) in ParseTypeTrait()
2796 Parens.skipToEnd(); in ParseTypeTrait()
2804 Parens.skipToEnd(); in ParseTypeTrait()
2820 if (Parens.consumeClose()) in ParseTypeTrait()
2823 return Actions.ActOnTypeTrait(Kind, Loc, Args, Parens.getCloseLocation()); in ParseTypeTrait()