Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Format/
H A DUnwrappedLineParser.cpp166 PPBranchLevel = -1; in reset()
1043 ++PPBranchLevel; in conditionalCompilationStart()
1044 assert(PPBranchLevel >= 0 && PPBranchLevel <= (int)PPLevelBranchIndex.size()); in conditionalCompilationStart()
1072 if (PPBranchLevel > -1) in conditionalCompilationEnd()
1073 --PPBranchLevel; in conditionalCompilationEnd()
1102 --PPBranchLevel; in parsePPIf()
1104 ++PPBranchLevel; in parsePPIf()
1116 assert(PPBranchLevel >= -1); in parsePPElse()
1117 if (PPBranchLevel == -1) in parsePPElse()
1120 --PPBranchLevel; in parsePPElse()
[all …]
H A DUnwrappedLineParser.h370 int PPBranchLevel; variable