Lines Matching refs:Col
277 void startSegment(unsigned Line, unsigned Col) { in startSegment() argument
278 DEBUG(dbgs() << "Top level segment at " << Line << ":" << Col << "\n"); in startSegment()
279 Segments.emplace_back(Line, Col, /*IsRegionEntry=*/false); in startSegment()
283 void startSegment(unsigned Line, unsigned Col, bool IsRegionEntry, in startSegment() argument
286 Segments.emplace_back(Line, Col, IsRegionEntry); in startSegment()
289 if (S.Line != Line || S.Col != Col) { in startSegment()
290 Segments.emplace_back(Line, Col, IsRegionEntry); in startSegment()
293 DEBUG(dbgs() << "Segment at " << Line << ":" << Col); in startSegment()
311 unsigned Line = Active->LineEnd, Col = Active->ColumnEnd; in popRegion() local
314 startSegment(Line, Col); in popRegion()
316 startSegment(Line, Col, false, *ActiveRegions.back()); in popRegion()