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
2028 const Token &Next = NextToken();
2029 if (Next.isOneOf(tok::amp, tok::ampamp, tok::kw_const, tok::kw_volatile,
2032 isCXX11VirtSpecifier(Next))
2262 Token Next = NextToken();
2263 if (Next.is(tok::coloncolon))
2268 TentativeParseCCC CCC(Next);
2270 Actions.ClassifyName(getCurScope(), SS, Name, NameLoc, Next, &CCC);