Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DLexer.cpp3078 if (NextDepDirectiveTokenIndex == DepDirectives.front().Tokens.size()) in isNextPPTokenLParen()
3080 return DepDirectives.front().Tokens[NextDepDirectiveTokenIndex].is( in isNextPPTokenLParen()
4395 while (NextDepDirectiveTokenIndex == DepDirectives.front().Tokens.size()) { in LexDependencyDirectiveToken()
4400 NextDepDirectiveTokenIndex = 0; in LexDependencyDirectiveToken()
4405 DepDirectives.front().Tokens[NextDepDirectiveTokenIndex++]; in LexDependencyDirectiveToken()
4406 if (NextDepDirectiveTokenIndex > 1 || DDTok.Kind != tok::hash) { in LexDependencyDirectiveToken()
4419 DepDirectives.front().Tokens[NextDepDirectiveTokenIndex]; in LexDependencyDirectiveToken()
4422 ++NextDepDirectiveTokenIndex; in LexDependencyDirectiveToken()
4450 assert(DepDirectives.front().Tokens[NextDepDirectiveTokenIndex].is( in LexDependencyDirectiveToken()
4452 ++NextDepDirectiveTokenIndex; in LexDependencyDirectiveToken()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Lex/
H A DLexer.h158 unsigned NextDepDirectiveTokenIndex = 0; variable