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,
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)) {
  589         LLVM_DEBUG(dbgs() << " ! Segment " << L.Line << ":" << L.Col
  590                           << " followed by " << R.Line << ":" << R.Col << "\n");
tools/llvm-cov/CoverageExporterJson.cpp
   65   return json::Array({Segment.Line, Segment.Col, int64_t(Segment.Count),
tools/llvm-cov/SourceCoverageViewHTML.cpp
  514   Snip(LCol - 1, Segments.empty() ? 0 : (Segments.front()->Col - 1));
  517     Snip(LCol - 1, Segments[I]->Col - LCol);
  554     else if (CurSeg->Col == ExpansionCol)
  560       Snippets[I + 1] = Highlight(Snippets[I + 1], CurSeg->Col,
  561                                   CurSeg->Col + Snippets[I + 1].size());
  596         errs() << "Marker at " << CurSeg->Line << ":" << CurSeg->Col << " = "
tools/llvm-cov/SourceCoverageViewText.cpp
  115     unsigned End = std::min(S->Col, static_cast<unsigned>(Line.size()) + 1);
  191     if (S->Col > PrevColumn)
  192       OS.indent(S->Col - PrevColumn);
  193     PrevColumn = S->Col + 1;
  199       errs() << "Marker at " << S->Line << ":" << S->Col << " = "
unittests/ProfileData/CoverageMappingTest.cpp
   50   *os << "CoverageSegment(" << S.Line << ", " << S.Col << ", ";