Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Lex/
H A DPPMacroExpansion.cpp1062 for (const auto &Lexer : MacroExpandingLexersStack) { in cacheMacroExpandedTokens()
1070 MacroExpandingLexersStack.push_back(std::make_pair(tokLexer, newIndex)); in cacheMacroExpandedTokens()
1075 assert(!MacroExpandingLexersStack.empty()); in removeCachedMacroExpandedTokensOfLastLexer()
1076 size_t tokIndex = MacroExpandingLexersStack.back().second; in removeCachedMacroExpandedTokensOfLastLexer()
1080 MacroExpandingLexersStack.pop_back(); in removeCachedMacroExpandedTokensOfLastLexer()
H A DPPLexerChange.cpp590 if (!MacroExpandingLexersStack.empty() && in HandleEndOfTokenLexer()
591 MacroExpandingLexersStack.back().first == CurTokenLexer.get()) in HandleEndOfTokenLexer()
/llvm-project-15.0.7/clang/include/clang/Lex/
H A DPreprocessor.h979 std::vector<std::pair<TokenLexer *, size_t>> MacroExpandingLexersStack; variable