Searched refs:FalseExecutionCount (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageViewText.cpp | 302 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 D | SourceCoverageViewHTML.cpp | 1112 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 D | CoverageSummaryInfo.cpp | 32 if (BR.FalseExecutionCount > 0) in sumBranches()
|
| H A D | CoverageExporterLcov.cpp | 144 unsigned BC2 = NextBranch->FalseExecutionCount; in renderBranchExecutionCounts()
|
| H A D | CoverageExporterJson.cpp | 100 clamp_uint64_to_int64(Region.FalseExecutionCount), Region.FileID, in renderBranch()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/ |
| H A D | CoverageMapping.h | 360 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()
|