Lines Matching refs:CurToken
34 CurToken = 0; in Init()
93 CurToken = 0; in Init()
429 if (CurToken == 0) in Lex()
438 bool isFirstToken = CurToken == 0; in Lex()
441 Tok = Tokens[CurToken++]; in Lex()
448 (Tokens[CurToken].is(tok::hashhash) || in Lex()
453 isWideStringLiteralFromMacro(Tok, Tokens[CurToken])))) { in Lex()
527 if (PP.getLangOpts().MicrosoftExt && (CurToken >= 2) && in PasteTokens()
528 Tokens[CurToken - 2].is(tok::hashhash)) in PasteTokens()
537 PasteOpLoc = Tokens[CurToken].getLocation(); in PasteTokens()
538 if (Tokens[CurToken].is(tok::hashhash)) in PasteTokens()
539 ++CurToken; in PasteTokens()
543 const Token &RHS = Tokens[CurToken]; in PasteTokens()
666 ++CurToken; in PasteTokens()
668 } while (!isAtEnd() && Tokens[CurToken].is(tok::hashhash)); in PasteTokens()
670 SourceLocation EndLoc = Tokens[CurToken - 1].getLocation(); in PasteTokens()
709 return Tokens[CurToken].is(tok::l_paren); in isNextTokenLParen()