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.cpp1168 bool HasCount = !EmitSkippedRegion && in startSegment() local
1174 if (Last.HasCount == HasCount && Last.Count == Region.ExecutionCount && in startSegment()
1179 if (HasCount) in startSegment()
1191 << (!Last.HasCount ? ", Skipped" : "") in startSegment()
1384 if (L.Line == R.Line && L.Col == R.Col && !L.HasCount) in buildSegments()
1571 return !S->IsGapRegion && S->HasCount && S->IsRegionEntry; in LineCoverageStats()
1578 !LineSegments.front()->HasCount && in LineCoverageStats()
1584 ((WrappedSegment && WrappedSegment->HasCount) || (MinRegionCount > 0)); in LineCoverageStats()
1589 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()
189 if ((!S->IsGapRegion || Highlight == raw_ostream::RED) && S->HasCount && in renderLine()
H A DCoverageExporterJson.cpp85 clamp_uint64_to_int64(Segment.Count), Segment.HasCount, in renderSegment()
H A DSourceCoverageViewHTML.cpp978 S->HasCount && S->Count == 0; in renderLine()
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMapping.h857 bool HasCount; member
864 : Line(Line), Col(Col), Count(0), HasCount(false), in CoverageSegment()
870 : Line(Line), Col(Col), Count(Count), HasCount(true), in Line()
874 return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry,
876 R.HasCount, R.IsRegionEntry,