Home
last modified time | relevance | path

Searched refs:FalseExecutionCount (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageViewText.cpp302 uint64_t Total = R.ExecutionCount + R.FalseExecutionCount; in renderBranchView()
306 FalsePercent = ((double)(R.FalseExecutionCount) / (double)Total) * 100.0; in renderBranchView()
328 getOptions().Colors && !R.FalseExecutionCount, in renderBranchView()
333 OS << ": " << formatCount(R.FalseExecutionCount); in renderBranchView()
H A DSourceCoverageViewHTML.cpp929 uint64_t Total = R.ExecutionCount + R.FalseExecutionCount; in renderBranchView()
933 FalsePercent = ((double)(R.FalseExecutionCount) / (double)Total) * 100.0; in renderBranchView()
966 std::string FalseColor = R.FalseExecutionCount ? "None" : "red"; in renderBranchView()
968 (R.FalseExecutionCount > 0) ? "covered-line" : "uncovered-line"; in renderBranchView()
973 OS << tag("span", formatCount(R.FalseExecutionCount), FalseCovClass); in renderBranchView()
H A DCoverageSummaryInfo.cpp32 if (BR.FalseExecutionCount > 0) in sumBranches()
H A DCoverageExporterLcov.cpp144 unsigned BC2 = NextBranch->FalseExecutionCount; in renderBranchExecutionCounts()
H A DCoverageExporterJson.cpp100 clamp_uint64_to_int64(Region.FalseExecutionCount), Region.FileID, in renderBranch()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h370 uint64_t FalseExecutionCount; member
375 FalseExecutionCount(0), Folded(false) {} in CountedRegion()
378 uint64_t FalseExecutionCount) in CountedRegion()
380 FalseExecutionCount(FalseExecutionCount), Folded(false) {} in CountedRegion()