Lines Matching refs:Col
286 void startSegment(unsigned Line, unsigned Col) { in startSegment() argument
287 DEBUG(dbgs() << "Top level segment at " << Line << ":" << Col << "\n"); in startSegment()
288 Segments.emplace_back(Line, Col, /*IsRegionEntry=*/false); in startSegment()
292 void startSegment(unsigned Line, unsigned Col, bool IsRegionEntry, in startSegment() argument
296 Segments.back().Col == Col) in startSegment()
298 DEBUG(dbgs() << "Segment at " << Line << ":" << Col); in startSegment()
302 Segments.emplace_back(Line, Col, Region.ExecutionCount, IsRegionEntry); in startSegment()
304 Segments.emplace_back(Line, Col, IsRegionEntry); in startSegment()
317 unsigned Line = Active->LineEnd, Col = Active->ColumnEnd; in popRegion() local
320 startSegment(Line, Col); in popRegion()
322 startSegment(Line, Col, false, *ActiveRegions.back()); in popRegion()