Searched refs:IncludeMacroStack (Results 1 – 5 of 5) sorted by relevance
38 return IncludeMacroStack.empty(); in isInPrimaryFile()41 assert(IsFileLexer(IncludeMacroStack[0]) && in isInPrimaryFile()43 for (unsigned i = 1, e = IncludeMacroStack.size(); i != e; ++i) in isInPrimaryFile()44 if (IsFileLexer(IncludeMacroStack[i])) in isInPrimaryFile()57 for (unsigned i = IncludeMacroStack.size(); i != 0; --i) { in getCurrentFileLexer()58 const IncludeStackInfo& ISI = IncludeMacroStack[i-1]; in getCurrentFileLexer()77 if (MaxIncludeStackDepth < IncludeMacroStack.size()) in EnterSourceFile()78 MaxIncludeStackDepth = IncludeMacroStack.size(); in EnterSourceFile()371 if (!IncludeMacroStack.empty()) { in HandleEndOfFile()545 assert(!IncludeMacroStack.empty() && "Ran out of stack entries to load"); in RemoveTopOfLexerStack()[all …]
650 for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) { in LookupFile()651 IncludeStackInfo &ISEntry = IncludeMacroStack[e - i - 1]; in LookupFile()711 for (unsigned i = 0, e = IncludeMacroStack.size(); i != e; ++i) { in LookupFile()712 IncludeStackInfo &ISEntry = IncludeMacroStack[e-i-1]; in LookupFile()1565 if (IncludeMacroStack.size() == MaxAllowedIncludeStackDepth-1) { in HandleIncludeDirective()
393 for (unsigned i = IncludeMacroStack.size(); i != 0; --i) { in isNextPPTokenLParen()394 IncludeStackInfo &Entry = IncludeMacroStack[i-1]; in isNextPPTokenLParen()
145 IncludeMacroStack.clear(); in ~Preprocessor()
357 std::vector<IncludeStackInfo> IncludeMacroStack; variable1664 IncludeMacroStack.emplace_back( in PushIncludeMacroStack()1671 CurLexer = std::move(IncludeMacroStack.back().TheLexer); in PopIncludeMacroStack()1672 CurPTHLexer = std::move(IncludeMacroStack.back().ThePTHLexer); in PopIncludeMacroStack()1673 CurPPLexer = IncludeMacroStack.back().ThePPLexer; in PopIncludeMacroStack()1674 CurTokenLexer = std::move(IncludeMacroStack.back().TheTokenLexer); in PopIncludeMacroStack()1675 CurDirLookup = IncludeMacroStack.back().TheDirLookup; in PopIncludeMacroStack()1676 CurSubmodule = IncludeMacroStack.back().TheSubmodule; in PopIncludeMacroStack()1677 CurLexerKind = IncludeMacroStack.back().CurLexerKind; in PopIncludeMacroStack()1678 IncludeMacroStack.pop_back(); in PopIncludeMacroStack()[all …]