reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-cov/CoverageExporterLcov.cpp
   69       OS << "DA:" << LCS.getLine() << ',' << LCS.getExecutionCount() << '\n';
tools/llvm-cov/CoverageSummaryInfo.cpp
   39     if (LCS.getExecutionCount())
tools/llvm-cov/SourceCoverageView.cpp
  127     if (!CurSeg->IsRegionEntry || CurSeg->Count == LCS.getExecutionCount())
tools/llvm-cov/SourceCoverageViewHTML.cpp
  587       if (CurSeg->Count == LCS.getExecutionCount())
  617     Count = tag("pre", formatCount(Line.getExecutionCount()));
  619       (Line.getExecutionCount() > 0) ? "covered-line" : "uncovered-line";
tools/llvm-cov/SourceCoverageViewText.cpp
  153   std::string C = formatCount(Line.getExecutionCount());
  188     if (S->Count == Line.getExecutionCount())
unittests/ProfileData/CoverageMappingTest.cpp
  681     errs() << "Line: " << Line + 1 << ", count = " << LCS.getExecutionCount() << "\n";
  682     ASSERT_EQ(LineCounts[Line], LCS.getExecutionCount());