Home
last modified time | relevance | path

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

/minix/external/bsd/llvm/dist/clang/lib/Lex/
H A DPPMacroExpansion.cpp799 for (unsigned i = 0, e = MacroExpandingLexersStack.size(); i != e; ++i) { in cacheMacroExpandedTokens()
802 std::tie(prevLexer, tokIndex) = MacroExpandingLexersStack[i]; in cacheMacroExpandedTokens()
807 MacroExpandingLexersStack.push_back(std::make_pair(tokLexer, newIndex)); in cacheMacroExpandedTokens()
812 assert(!MacroExpandingLexersStack.empty()); in removeCachedMacroExpandedTokensOfLastLexer()
813 size_t tokIndex = MacroExpandingLexersStack.back().second; in removeCachedMacroExpandedTokensOfLastLexer()
817 MacroExpandingLexersStack.pop_back(); in removeCachedMacroExpandedTokensOfLastLexer()
H A DPPLexerChange.cpp513 if (!MacroExpandingLexersStack.empty() && in HandleEndOfTokenLexer()
514 MacroExpandingLexersStack.back().first == CurTokenLexer.get()) in HandleEndOfTokenLexer()
/minix/external/bsd/llvm/dist/clang/include/clang/Lex/
H A DPreprocessor.h421 std::vector<std::pair<TokenLexer *, size_t> > MacroExpandingLexersStack; variable