Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp3207 if (NextDepDirectiveTokenIndex == DepDirectives.front().Tokens.size()) in peekNextPPToken()
3211 DepDirectives.front().Tokens[NextDepDirectiveTokenIndex], Result); in peekNextPPToken()
4546 while (NextDepDirectiveTokenIndex == DepDirectives.front().Tokens.size()) { in LexDependencyDirectiveToken()
4551 NextDepDirectiveTokenIndex = 0; in LexDependencyDirectiveToken()
4556 DepDirectives.front().Tokens[NextDepDirectiveTokenIndex++]; in LexDependencyDirectiveToken()
4557 if (NextDepDirectiveTokenIndex > 1 || DDTok.Kind != tok::hash) { in LexDependencyDirectiveToken()
4570 DepDirectives.front().Tokens[NextDepDirectiveTokenIndex]; in LexDependencyDirectiveToken()
4573 ++NextDepDirectiveTokenIndex; in LexDependencyDirectiveToken()
4603 assert(DepDirectives.front().Tokens[NextDepDirectiveTokenIndex].is( in LexDependencyDirectiveToken()
4605 ++NextDepDirectiveTokenIndex; in LexDependencyDirectiveToken()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DLexer.h158 unsigned NextDepDirectiveTokenIndex = 0; variable