Home
last modified time | relevance | path

Searched refs:MacroExpandingLexersStack (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPLexerChange.cpp605 if (!MacroExpandingLexersStack.empty() && in HandleEndOfTokenLexer()
606 MacroExpandingLexersStack.back().first == CurTokenLexer.get()) in HandleEndOfTokenLexer()
H A DPPMacroExpansion.cpp1074 for (const auto &Lexer : MacroExpandingLexersStack) { in cacheMacroExpandedTokens()
1082 MacroExpandingLexersStack.push_back(std::make_pair(tokLexer, newIndex)); in cacheMacroExpandedTokens()
1087 assert(!MacroExpandingLexersStack.empty()); in removeCachedMacroExpandedTokensOfLastLexer()
1088 size_t tokIndex = MacroExpandingLexersStack.back().second; in removeCachedMacroExpandedTokensOfLastLexer()
1092 MacroExpandingLexersStack.pop_back(); in removeCachedMacroExpandedTokensOfLastLexer()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessor.h1133 std::vector<std::pair<TokenLexer *, size_t>> MacroExpandingLexersStack; variable