Home | History | Annotate | Download | only in Parse

Lines Matching full:comma

276   if (Tok.is(tok::comma)) {
351 // a comma or closing brace.
352 SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);
355 // Did we find a comma or the end of the template parameter list?
356 if (Tok.is(tok::comma)) {
366 SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);
381 case tok::comma:
398 case tok::comma:
425 case tok::comma:
500 } else if (Tok.is(tok::equal) || Tok.is(tok::comma) ||
550 // identifier, comma, or greater. Provide a fixit if the identifier, comma,
556 if (Next.is(tok::identifier) || Next.is(tok::comma) ||
587 } else if (Tok.is(tok::equal) || Tok.is(tok::comma) ||
614 SkipUntil(tok::comma, tok::greater, tok::greatergreater, true, true);
664 SkipUntil(tok::comma, tok::greater, true, true);
1003 return Tok.is(tok::comma) || Tok.is(tok::greater) ||
1170 return Tok.is(tok::greater) || Tok.is(tok::comma);
1192 SkipUntil(tok::comma, tok::greater, true, true);
1199 // If the next token is a comma, consume it and keep reading
1201 if (Tok.isNot(tok::comma)) break;
1203 // Consume the comma.