Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp1065 bool HasCount = !EmitSkippedRegion && in startSegment() local
1071 if (Last.HasCount == HasCount && Last.Count == Region.ExecutionCount && in startSegment()
1076 if (HasCount) in startSegment()
1088 << (!Last.HasCount ? ", Skipped" : "") in startSegment()
1281 if (L.Line == R.Line && L.Col == R.Col && !L.HasCount) in buildSegments()
1464 return !S->IsGapRegion && S->HasCount && S->IsRegionEntry; in LineCoverageStats()
1471 !LineSegments.front()->HasCount && in LineCoverageStats()
1477 ((WrappedSegment && WrappedSegment->HasCount) || (MinRegionCount > 0)); in LineCoverageStats()
1483 [](const auto *Seq) { return Seq->IsRegionEntry && Seq->HasCount; }); in LineCoverageStats()
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp96 return S.HasCount && S.Count == 0; in getFirstUncoveredLineNo()
133 if (!CurSeg->HasCount) // don't show tooltips for SkippedRegions in shouldRenderRegionMarkers()
H A DSourceCoverageViewText.cpp175 WrappedSegment->HasCount && WrappedSegment->Count == 0) in renderLine()
190 S->HasCount && S->Count == 0) in renderLine()
H A DCoverageExporterJson.cpp85 clamp_uint64_to_int64(Segment.Count), Segment.HasCount, in renderSegment()
H A DSourceCoverageViewHTML.cpp802 S->HasCount && S->Count == 0; in renderLine()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h706 bool HasCount; member
713 : Line(Line), Col(Col), Count(0), HasCount(false), in CoverageSegment()
719 : Line(Line), Col(Col), Count(Count), HasCount(true), in Line()
723 return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry,
725 R.HasCount, R.IsRegionEntry,