Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
H A DSourceCoverageViewText.cpp235 unsigned Total = R.ExecutionCount + R.FalseExecutionCount; in renderBranchView()
239 FalsePercent = ((double)(R.FalseExecutionCount) / (double)Total) * 100.0; in renderBranchView()
261 getOptions().Colors && !R.FalseExecutionCount, in renderBranchView()
266 OS << ": " << formatCount(R.FalseExecutionCount); in renderBranchView()
H A DSourceCoverageViewHTML.cpp671 unsigned Total = R.ExecutionCount + R.FalseExecutionCount; in renderBranchView()
675 FalsePercent = ((double)(R.FalseExecutionCount) / (double)Total) * 100.0; in renderBranchView()
708 std::string FalseColor = R.FalseExecutionCount ? "None" : "red"; in renderBranchView()
710 (R.FalseExecutionCount > 0) ? "covered-line" : "uncovered-line"; in renderBranchView()
715 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.cpp97 clamp_uint64_to_int64(Region.FalseExecutionCount), Region.FileID, in renderBranch()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h305 uint64_t FalseExecutionCount; member
310 FalseExecutionCount(0), Folded(false) {} in CountedRegion()
313 uint64_t FalseExecutionCount) in CountedRegion()
315 FalseExecutionCount(FalseExecutionCount), Folded(false) {} in CountedRegion()