Home
last modified time | relevance | path

Searched refs:PPLevelBranchIndex (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/lib/Format/
H A DUnwrappedLineParser.cpp377 while (!PPLevelBranchIndex.empty() && in parse()
379 PPLevelBranchIndex.resize(PPLevelBranchIndex.size() - 1); in parse()
382 if (!PPLevelBranchIndex.empty()) { in parse()
383 ++PPLevelBranchIndex.back(); in parse()
384 assert(PPLevelBranchIndex.size() == PPLevelBranchCount.size()); in parse()
387 } while (!PPLevelBranchIndex.empty()); in parse()
1108 if (PPBranchLevel == (int)PPLevelBranchIndex.size()) { in conditionalCompilationStart()
1109 PPLevelBranchIndex.push_back(0); in conditionalCompilationStart()
1113 bool Skip = PPLevelBranchIndex[PPBranchLevel] > 0; in conditionalCompilationStart()
1120 assert(PPBranchLevel < (int)PPLevelBranchIndex.size()); in conditionalCompilationAlternative()
[all …]
H A DUnwrappedLineParser.h299 SmallVector<int, 8> PPLevelBranchIndex; variable