Home
last modified time | relevance | path

Searched refs:NextDepDirectiveTokenIndex (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/lib/Lex/
H A DLexer.cpp3017 if (NextDepDirectiveTokenIndex == DepDirectives.front().Tokens.size()) in isNextPPTokenLParen()
3019 return DepDirectives.front().Tokens[NextDepDirectiveTokenIndex].is( in isNextPPTokenLParen()
4323 while (NextDepDirectiveTokenIndex == DepDirectives.front().Tokens.size()) { in LexDependencyDirectiveToken()
4326 NextDepDirectiveTokenIndex = 0; in LexDependencyDirectiveToken()
4331 DepDirectives.front().Tokens[NextDepDirectiveTokenIndex++]; in LexDependencyDirectiveToken()
4332 if (NextDepDirectiveTokenIndex > 1 || DDTok.Kind != tok::hash) { in LexDependencyDirectiveToken()
4360 assert(DepDirectives.front().Tokens[NextDepDirectiveTokenIndex].is( in LexDependencyDirectiveToken()
4362 ++NextDepDirectiveTokenIndex; in LexDependencyDirectiveToken()
4423 NextDepDirectiveTokenIndex = 0; in LexDependencyDirectiveTokenWhileSkipping()
4431 NextDepDirectiveTokenIndex = 1; in LexDependencyDirectiveTokenWhileSkipping()
/llvm-project-15.0.7/clang/include/clang/Lex/
H A DLexer.h158 unsigned NextDepDirectiveTokenIndex = 0; variable