Home | History | Annotate | Download | only in Parse

Lines Matching refs:NextToken

151     if (NextToken().isNot(tok::l_paren)) {
580 if (Tok.isNot(tok::l_square) || NextToken().isNot(tok::l_square))
700 (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::star))) {
739 if (Tok.is(tok::l_square) && NextToken().is(tok::r_square)) {
753 if (NextToken().is(tok::r_square)) {
761 if (NextToken().is(tok::r_paren)) {
874 (Tok.is(tok::annot_cxxscope) && (NextToken().is(tok::identifier) ||
875 NextToken().is(tok::kw_operator)))) &&
892 (Tok.is(tok::ellipsis) && NextToken().is(tok::r_paren)) ||
1215 const Token &Next = NextToken();
1268 const Token &Next = NextToken();
1386 if (Tok.is(tok::annot_cxxscope) && NextToken().is(tok::identifier)) {
1431 NextToken().isNot(tok::identifier));
1462 if (getLangOpts().ObjC1 && NextToken().is(tok::less)) {
1501 if (NextToken().is(tok::l_paren))
1510 if (getLangOpts().CPlusPlus11 && NextToken().is(tok::l_brace))
1520 if (NextToken().isNot(tok::l_paren))
1599 return NextToken().is(tok::l_paren);
1677 const Token &Next = NextToken();