Lines Matching defs:Row
353 DWARFDebugLine::Row PrevRow;
356 const DWARFDebugLine::Row &Row = CUI.LineTable->Rows[RowIndex];
358 CUI.DWARFToGSYMFileIndex(Gsym, Row.File);
365 Row.dumpTableHeader(OS, /*Indent=*/0);
366 Row.dump(OS);
372 uint64_t RowAddress = Row.Address.Address;
381 Out.Report("Start address lies between valid Row table entries",
385 "line table Row["
396 LineEntry LE(RowAddress, FileIdx, Row.Line);
397 if (RowIndex != RowVector[0] && Row.Address < PrevRow.Address) {
425 if (LastLE && LastLE->File == FileIdx && LastLE->Line == Row.Line)
430 if (Row.EndSequence) {
435 PrevRow = DWARFDebugLine::Row();
438 PrevRow = Row;