Searched refs:HasCount (Results 1 – 6 of 6) sorted by relevance
| /src/contrib/llvm-project/llvm/lib/ProfileData/Coverage/ |
| H A D | CoverageMapping.cpp | 1114 bool HasCount = !EmitSkippedRegion && in startSegment() local 1120 if (Last.HasCount == HasCount && Last.Count == Region.ExecutionCount && in startSegment() 1125 if (HasCount) in startSegment() 1137 << (!Last.HasCount ? ", Skipped" : "") in startSegment() 1336 if (L.Line == R.Line && L.Col == R.Col && !L.HasCount) in buildSegments() 1519 return !S->IsGapRegion && S->HasCount && S->IsRegionEntry; in LineCoverageStats() 1526 !LineSegments.front()->HasCount && in LineCoverageStats() 1532 ((WrappedSegment && WrappedSegment->HasCount) || (MinRegionCount > 0)); in LineCoverageStats() 1538 [](const auto *Seq) { return Seq->IsRegionEntry && Seq->HasCount; }); in LineCoverageStats()
|
| /src/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageView.cpp | 96 return S.HasCount && S.Count == 0; in getFirstUncoveredLineNo() 133 if (!CurSeg->HasCount) // don't show tooltips for SkippedRegions in shouldRenderRegionMarkers()
|
| H A D | SourceCoverageViewText.cpp | 175 WrappedSegment->HasCount && WrappedSegment->Count == 0) in renderLine() 190 S->HasCount && S->Count == 0) in renderLine()
|
| H A D | CoverageExporterJson.cpp | 85 clamp_uint64_to_int64(Segment.Count), Segment.HasCount, in renderSegment()
|
| H A D | SourceCoverageViewHTML.cpp | 983 S->HasCount && S->Count == 0; in renderLine()
|
| /src/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/ |
| H A D | CoverageMapping.h | 799 bool HasCount; member 806 : Line(Line), Col(Col), Count(0), HasCount(false), in CoverageSegment() 812 : Line(Line), Col(Col), Count(Count), HasCount(true), in Line() 816 return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry, 818 R.HasCount, R.IsRegionEntry,
|