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

References

lib/ProfileData/Coverage/CoverageMapping.cpp
  467       auto CurStartLoc = CR.value().startLoc();
  481       bool GapRegion = CR.value().Kind == CounterMappingRegion::GapRegion;
  484       if (CurStartLoc == CR.value().endLoc()) {
  487         const bool Skipped = (CR.index() + 1) == Regions.size();
  488         startSegment(ActiveRegions.empty() ? CR.value() : *ActiveRegions.back(),
  492       if (CR.index() + 1 == Regions.size() ||
  493           CurStartLoc != Regions[CR.index() + 1].startLoc()) {
  496         startSegment(CR.value(), CurStartLoc, !GapRegion);
  500       ActiveRegions.push_back(&CR.value());