Lines Matching defs:Next
1197 TentativeParseCCC(const Token &Next) {
1200 Next.isOneOf(tok::l_paren, tok::r_paren, tok::greater, tok::l_brace,
1383 const Token &Next = NextToken();
1385 if (!getLangOpts().ObjC && Next.is(tok::identifier))
1391 if (Next.is(tok::l_paren) &&
1397 if (Next.isNot(tok::coloncolon) && Next.isNot(tok::less)) {
1402 TentativeParseCCC CCC(Next);
1468 const Token &Next = NextToken();
1469 if (Next.isOneOf(tok::kw_new, // ::new
2024 const Token &Next = NextToken();
2025 if (Next.isOneOf(tok::amp, tok::ampamp, tok::kw_const, tok::kw_volatile,
2028 isCXX11VirtSpecifier(Next))
2258 Token Next = NextToken();
2259 if (Next.is(tok::coloncolon))
2264 TentativeParseCCC CCC(Next);
2266 Actions.ClassifyName(getCurScope(), SS, Name, NameLoc, Next, &CCC);