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

References

include/llvm/ProfileData/Coverage/CoverageMapping.h
  409     return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry,
  410                     L.IsGapRegion) == std::tie(R.Line, R.Col, R.Count,
  638       : LineCoverageIterator(CD, CD.begin()->Line) {}
lib/ProfileData/Coverage/CoverageMapping.cpp
  399       dbgs() << "Segment at " << Last.Line << ":" << Last.Col
  588       if (!(L.Line < R.Line) && !(L.Line == R.Line && L.Col < R.Col)) {
  588       if (!(L.Line < R.Line) && !(L.Line == R.Line && L.Col < R.Col)) {
  588       if (!(L.Line < R.Line) && !(L.Line == R.Line && L.Col < R.Col)) {
  588       if (!(L.Line < R.Line) && !(L.Line == R.Line && L.Col < R.Col)) {
  589         LLVM_DEBUG(dbgs() << " ! Segment " << L.Line << ":" << L.Col
  590                           << " followed by " << R.Line << ":" << R.Col << "\n");
  786   while (Next != CD.end() && Next->Line == Line)
tools/llvm-cov/CoverageExporterJson.cpp
   65   return json::Array({Segment.Line, Segment.Col, int64_t(Segment.Count),
tools/llvm-cov/SourceCoverageView.cpp
   99   return (*MinSegIt).Line;
  205   unsigned FirstLine = StartSegment != EndSegment ? StartSegment->Line : 0;
tools/llvm-cov/SourceCoverageViewHTML.cpp
  596         errs() << "Marker at " << CurSeg->Line << ":" << CurSeg->Col << " = "
tools/llvm-cov/SourceCoverageViewText.cpp
  199       errs() << "Marker at " << S->Line << ":" << S->Col << " = "
unittests/ProfileData/CoverageMappingTest.cpp
   50   *os << "CoverageSegment(" << S.Line << ", " << S.Col << ", ";
  327     EXPECT_EQ(I, Data.begin()->Line);