Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp3204 if (NextDepDirectiveTokenIndex == DepDirectives.front().Tokens.size()) in isNextPPTokenLParen()
3206 return DepDirectives.front().Tokens[NextDepDirectiveTokenIndex].is( in isNextPPTokenLParen()
4519 while (NextDepDirectiveTokenIndex == DepDirectives.front().Tokens.size()) { in LexDependencyDirectiveToken()
4524 NextDepDirectiveTokenIndex = 0; in LexDependencyDirectiveToken()
4529 DepDirectives.front().Tokens[NextDepDirectiveTokenIndex++]; in LexDependencyDirectiveToken()
4530 if (NextDepDirectiveTokenIndex > 1 || DDTok.Kind != tok::hash) { in LexDependencyDirectiveToken()
4543 DepDirectives.front().Tokens[NextDepDirectiveTokenIndex]; in LexDependencyDirectiveToken()
4546 ++NextDepDirectiveTokenIndex; in LexDependencyDirectiveToken()
4573 assert(DepDirectives.front().Tokens[NextDepDirectiveTokenIndex].is( in LexDependencyDirectiveToken()
4575 ++NextDepDirectiveTokenIndex; in LexDependencyDirectiveToken()
[all …]
/src/contrib/llvm-project/clang/include/clang/Lex/
H A DLexer.h158 unsigned NextDepDirectiveTokenIndex = 0; variable