Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/clang/lib/Lex/
H A DPPMacroExpansion.cpp1053 for (const auto &Lexer : MacroExpandingLexersStack) { in cacheMacroExpandedTokens()
1061 MacroExpandingLexersStack.push_back(std::make_pair(tokLexer, newIndex)); in cacheMacroExpandedTokens()
1066 assert(!MacroExpandingLexersStack.empty()); in removeCachedMacroExpandedTokensOfLastLexer()
1067 size_t tokIndex = MacroExpandingLexersStack.back().second; in removeCachedMacroExpandedTokensOfLastLexer()
1071 MacroExpandingLexersStack.pop_back(); in removeCachedMacroExpandedTokensOfLastLexer()
H A DPPLexerChange.cpp552 if (!MacroExpandingLexersStack.empty() && in HandleEndOfTokenLexer()
553 MacroExpandingLexersStack.back().first == CurTokenLexer.get()) in HandleEndOfTokenLexer()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DPreprocessor.h844 std::vector<std::pair<TokenLexer *, size_t>> MacroExpandingLexersStack; variable