Home
last modified time | relevance | path

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

/external/clang/lib/Lex/
DPPMacroExpansion.cpp990 for (unsigned i = 0, e = MacroExpandingLexersStack.size(); i != e; ++i) { in cacheMacroExpandedTokens()
993 std::tie(prevLexer, tokIndex) = MacroExpandingLexersStack[i]; in cacheMacroExpandedTokens()
998 MacroExpandingLexersStack.push_back(std::make_pair(tokLexer, newIndex)); in cacheMacroExpandedTokens()
1003 assert(!MacroExpandingLexersStack.empty()); in removeCachedMacroExpandedTokensOfLastLexer()
1004 size_t tokIndex = MacroExpandingLexersStack.back().second; in removeCachedMacroExpandedTokensOfLastLexer()
1008 MacroExpandingLexersStack.pop_back(); in removeCachedMacroExpandedTokensOfLastLexer()
DPPLexerChange.cpp527 if (!MacroExpandingLexersStack.empty() && in HandleEndOfTokenLexer()
528 MacroExpandingLexersStack.back().first == CurTokenLexer.get()) in HandleEndOfTokenLexer()
/external/llvm-project/clang/lib/Lex/
DPPMacroExpansion.cpp1051 for (const auto &Lexer : MacroExpandingLexersStack) { in cacheMacroExpandedTokens()
1059 MacroExpandingLexersStack.push_back(std::make_pair(tokLexer, newIndex)); in cacheMacroExpandedTokens()
1064 assert(!MacroExpandingLexersStack.empty()); in removeCachedMacroExpandedTokensOfLastLexer()
1065 size_t tokIndex = MacroExpandingLexersStack.back().second; in removeCachedMacroExpandedTokensOfLastLexer()
1069 MacroExpandingLexersStack.pop_back(); in removeCachedMacroExpandedTokensOfLastLexer()
DPPLexerChange.cpp552 if (!MacroExpandingLexersStack.empty() && in HandleEndOfTokenLexer()
553 MacroExpandingLexersStack.back().first == CurTokenLexer.get()) in HandleEndOfTokenLexer()
/external/clang/include/clang/Lex/
DPreprocessor.h605 std::vector<std::pair<TokenLexer *, size_t> > MacroExpandingLexersStack; variable
/external/llvm-project/clang/include/clang/Lex/
DPreprocessor.h844 std::vector<std::pair<TokenLexer *, size_t>> MacroExpandingLexersStack; variable