Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineParser.cpp286 while (!PPLevelBranchIndex.empty() && in parse()
288 PPLevelBranchIndex.resize(PPLevelBranchIndex.size() - 1); in parse()
291 if (!PPLevelBranchIndex.empty()) { in parse()
292 ++PPLevelBranchIndex.back(); in parse()
293 assert(PPLevelBranchIndex.size() == PPLevelBranchCount.size()); in parse()
296 } while (!PPLevelBranchIndex.empty()); in parse()
783 if (PPBranchLevel == (int)PPLevelBranchIndex.size()) { in conditionalCompilationStart()
784 PPLevelBranchIndex.push_back(0); in conditionalCompilationStart()
788 bool Skip = PPLevelBranchIndex[PPBranchLevel] > 0; in conditionalCompilationStart()
795 assert(PPBranchLevel < (int)PPLevelBranchIndex.size()); in conditionalCompilationAlternative()
[all …]
H A DUnwrappedLineParser.h263 SmallVector<int, 8> PPLevelBranchIndex; variable