Home | History | Annotate | Download | only in Parse

Lines Matching refs:Parens

829         BalancedDelimiterTracker Parens(*this, tok::l_paren);
830 Parens.consumeOpen();
835 Parens.skipToEnd();
838 Parens.skipToEnd();
841 Parens.consumeClose();
842 Init = Actions.ActOnParenListExpr(Parens.getOpenLocation(),
843 Parens.getCloseLocation(),
2793 BalancedDelimiterTracker Parens(*this, tok::l_paren);
2794 if (Parens.expectAndConsume())
2802 Parens.skipToEnd();
2810 Parens.skipToEnd();
2819 if (Parens.consumeClose())
2822 SourceLocation EndLoc = Parens.getCloseLocation();
2908 /// based on the context past the parens.
2929 // it can only verify that the thing inside the parens can be parsed as
2930 // type-id, it is not useful for determining the context past the parens.