HomeSort by: relevance | last modified time | path
    Searched refs:IncludeMacroStack (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPLexerChange.cpp 35 return IncludeMacroStack.empty();
38 assert(IsFileLexer(IncludeMacroStack[0]) &&
41 IncludeMacroStack.begin() + 1, IncludeMacroStack.end(),
53 for (const IncludeStackInfo &ISI : llvm::reverse(IncludeMacroStack)) {
72 if (MaxIncludeStackDepth < IncludeMacroStack.size())
73 MaxIncludeStackDepth = IncludeMacroStack.size();
312 if ((LeavingSubmodule || IncludeMacroStack.empty()) &&
402 if (!IncludeMacroStack.empty()) {
570 assert(!IncludeMacroStack.empty() && "Ran out of stack entries to load")
    [all...]
PPDirectives.cpp 791 for (IncludeStackInfo &ISEntry : llvm::reverse(IncludeMacroStack)) {
854 for (IncludeStackInfo &ISEntry : llvm::reverse(IncludeMacroStack)) {
2243 if (IncludeMacroStack.size() == MaxAllowedIncludeStackDepth-1) {
Preprocessor.cpp 172 IncludeMacroStack.clear();
PPMacroExpansion.cpp 449 for (const IncludeStackInfo &Entry : llvm::reverse(IncludeMacroStack)) {
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
Preprocessor.h 558 std::vector<IncludeStackInfo> IncludeMacroStack;
2045 IncludeMacroStack.emplace_back(CurLexerKind, CurLexerSubmodule,
2052 CurLexer = std::move(IncludeMacroStack.back().TheLexer);
2053 CurPPLexer = IncludeMacroStack.back().ThePPLexer;
2054 CurTokenLexer = std::move(IncludeMacroStack.back().TheTokenLexer);
2055 CurDirLookup = IncludeMacroStack.back().TheDirLookup;
2056 CurLexerSubmodule = IncludeMacroStack.back().TheSubmodule;
2057 CurLexerKind = IncludeMacroStack.back().CurLexerKind;
2058 IncludeMacroStack.pop_back();
2217 // If the Lexer pointers are 0 and IncludeMacroStack is empty, it mean
    [all...]

Completed in 60 milliseconds