Lines Matching refs:Row
353 DWARFDebugLine::Row PrevRow; in convertFunctionLineTable()
356 const DWARFDebugLine::Row &Row = CUI.LineTable->Rows[RowIndex]; in convertFunctionLineTable() local
358 CUI.DWARFToGSYMFileIndex(Gsym, Row.File); in convertFunctionLineTable()
365 Row.dumpTableHeader(OS, /*Indent=*/0); in convertFunctionLineTable()
366 Row.dump(OS); in convertFunctionLineTable()
372 uint64_t RowAddress = Row.Address.Address; in convertFunctionLineTable()
396 LineEntry LE(RowAddress, FileIdx, Row.Line); in convertFunctionLineTable()
397 if (RowIndex != RowVector[0] && Row.Address < PrevRow.Address) { in convertFunctionLineTable()
425 if (LastLE && LastLE->File == FileIdx && LastLE->Line == Row.Line) in convertFunctionLineTable()
430 if (Row.EndSequence) { in convertFunctionLineTable()
435 PrevRow = DWARFDebugLine::Row(); in convertFunctionLineTable()
438 PrevRow = Row; in convertFunctionLineTable()