Lines Matching refs:CurToken
34 CurToken = 0; in Init()
95 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()
530 PasteOpLoc = Tokens[CurToken].getLocation(); in PasteTokens()
531 if (Tokens[CurToken].is(tok::hashhash)) in PasteTokens()
532 ++CurToken; in PasteTokens()
536 const Token &RHS = Tokens[CurToken]; in PasteTokens()
658 ++CurToken; in PasteTokens()
660 } while (!isAtEnd() && Tokens[CurToken].is(tok::hashhash)); in PasteTokens()
662 SourceLocation EndLoc = Tokens[CurToken - 1].getLocation(); in PasteTokens()
701 return Tokens[CurToken].is(tok::l_paren); in isNextTokenLParen()