Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/
H A DPPMacroExpansion.cpp1033 for (const auto &Lexer : MacroExpandingLexersStack) { in cacheMacroExpandedTokens()
1041 MacroExpandingLexersStack.push_back(std::make_pair(tokLexer, newIndex)); in cacheMacroExpandedTokens()
1046 assert(!MacroExpandingLexersStack.empty()); in removeCachedMacroExpandedTokensOfLastLexer()
1047 size_t tokIndex = MacroExpandingLexersStack.back().second; in removeCachedMacroExpandedTokensOfLastLexer()
1051 MacroExpandingLexersStack.pop_back(); in removeCachedMacroExpandedTokensOfLastLexer()
H A DPPLexerChange.cpp547 if (!MacroExpandingLexersStack.empty() && in HandleEndOfTokenLexer()
548 MacroExpandingLexersStack.back().first == CurTokenLexer.get()) in HandleEndOfTokenLexer()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/
H A DPreprocessor.h736 std::vector<std::pair<TokenLexer *, size_t>> MacroExpandingLexersStack; variable