Home
last modified time | relevance | path

Searched defs:LineCoverageInfo (Results 1 – 2 of 2) sorted by relevance

/minix3/external/bsd/llvm/dist/llvm/tools/llvm-cov/
H A DSourceCoverageView.h81 struct LineCoverageInfo { struct
86 LineCoverageInfo() : ExecutionCount(0), RegionCount(0), Mapped(false) {} in LineCoverageInfo() argument
88 bool isMapped() const { return Mapped; } in isMapped()
90 bool hasMultipleRegions() const { return RegionCount > 1; } in hasMultipleRegions()
92 void addRegionStartCount(uint64_t Count) { in addRegionStartCount()
98 void addRegionCount(uint64_t Count) { in addRegionCount()
H A DCoverageSummaryInfo.h46 struct LineCoverageInfo { struct
59 LineCoverageInfo(size_t Covered, size_t NumNonCodeLines, size_t NumLines) in LineCoverageInfo() function
63 bool isFullyCovered() const { return Covered == (NumLines - NonCodeLines); } in isFullyCovered()
65 double getPercentCovered() const { in getPercentCovered()