Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp3148 if (NextDepDirectiveTokenIndex == DepDirectives.front().Tokens.size()) in isNextPPTokenLParen()
3150 return DepDirectives.front().Tokens[NextDepDirectiveTokenIndex].is( in isNextPPTokenLParen()
4468 NextDepDirectiveTokenIndex = 0; in LexDependencyDirectiveToken()
4473 DepDirectives.front().Tokens[NextDepDirectiveTokenIndex++]; in LexDependencyDirectiveToken()
4474 if (NextDepDirectiveTokenIndex > 1 || DDTok.Kind != tok::hash) { in LexDependencyDirectiveToken()
4487 DepDirectives.front().Tokens[NextDepDirectiveTokenIndex]; in LexDependencyDirectiveToken()
4490 ++NextDepDirectiveTokenIndex; in LexDependencyDirectiveToken()
4517 assert(DepDirectives.front().Tokens[NextDepDirectiveTokenIndex].is( in LexDependencyDirectiveToken()
4519 ++NextDepDirectiveTokenIndex; in LexDependencyDirectiveToken()
4582 NextDepDirectiveTokenIndex = 0; in LexDependencyDirectiveTokenWhileSkipping()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/
H A DLexer.h158 unsigned NextDepDirectiveTokenIndex = 0; variable