Home | History | Annotate | Download | only in Parse

Lines Matching refs:comma

122   return ParseRHSOfBinaryExpression(LHS, prec::Comma);
133 return ParseRHSOfBinaryExpression(LHS, prec::Comma);
153 return ParseRHSOfBinaryExpression(LHS, prec::Comma);
239 // Bail out when encountering a comma followed by a token which can't
242 // We can't do this before consuming the comma, because
244 if (OpToken.is(tok::comma) && isNotExpressionStart()) {
1701 if (ExpectAndConsume(tok::comma)) {
1727 if (ExpectAndConsume(tok::comma)) {
1805 if (ExpectAndConsume(tok::comma)) {
1815 if (ExpectAndConsume(tok::comma)) {
1834 // The first argument is an expression to be converted, followed by a comma.
1841 if (ExpectAndConsume(tok::comma)) {
1863 // The first argument is an expression to be converted, followed by a comma.
1870 if (ExpectAndConsume(tok::comma)) {
2227 if (ExpectAndConsume(tok::comma)) {
2272 } while (TryConsumeToken(tok::comma));
2336 if (Tok.isNot(tok::comma))
2338 // Move to the next argument, remember where the comma was.
2343 /// ParseSimpleExpressionList - A simple comma-separated list of expressions,
2361 if (Tok.isNot(tok::comma))
2364 // Move to the next argument, remember where the comma was.