Home
last modified time | relevance | path

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

/freebsd/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.cpp1112 uint64_t Total = R.ExecutionCount + R.FalseExecutionCount; in renderBranchView()
1116 FalsePercent = ((double)(R.FalseExecutionCount) / (double)Total) * 100.0; in renderBranchView()
1149 std::string FalseColor = R.FalseExecutionCount ? "None" : "red branch"; in renderBranchView()
1151 (R.FalseExecutionCount > 0) ? "covered-line" : "uncovered-line"; in renderBranchView()
1156 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/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h360 uint64_t FalseExecutionCount; member
367 FalseExecutionCount(0), Folded(false), in CountedRegion()
371 uint64_t FalseExecutionCount, bool HasSingleByteCoverage) in CountedRegion()
373 FalseExecutionCount(FalseExecutionCount), Folded(false), in CountedRegion()