Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineParser.cpp247 while (!PPLevelBranchIndex.empty() && in parse()
249 PPLevelBranchIndex.resize(PPLevelBranchIndex.size() - 1); in parse()
252 if (!PPLevelBranchIndex.empty()) { in parse()
253 ++PPLevelBranchIndex.back(); in parse()
254 assert(PPLevelBranchIndex.size() == PPLevelBranchCount.size()); in parse()
257 } while (!PPLevelBranchIndex.empty()); in parse()
1045 if (PPBranchLevel == (int)PPLevelBranchIndex.size()) { in conditionalCompilationStart()
1046 PPLevelBranchIndex.push_back(0); in conditionalCompilationStart()
1050 bool Skip = PPLevelBranchIndex[PPBranchLevel] > 0; in conditionalCompilationStart()
1057 assert(PPBranchLevel < (int)PPLevelBranchIndex.size()); in conditionalCompilationAlternative()
[all …]
H A DUnwrappedLineParser.h374 SmallVector<int, 8> PPLevelBranchIndex; variable