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