Lines Matching refs:Row
343 DWARFDebugLine::Row PrevRow; in convertFunctionLineTable()
346 const DWARFDebugLine::Row &Row = CUI.LineTable->Rows[RowIndex]; in convertFunctionLineTable() local
348 CUI.DWARFToGSYMFileIndex(Gsym, Row.File); in convertFunctionLineTable()
354 Row.dumpTableHeader(*Log, /*Indent=*/0); in convertFunctionLineTable()
355 Row.dump(*Log); in convertFunctionLineTable()
361 uint64_t RowAddress = Row.Address.Address; in convertFunctionLineTable()
382 LineEntry LE(RowAddress, FileIdx, Row.Line); in convertFunctionLineTable()
383 if (RowIndex != RowVector[0] && Row.Address < PrevRow.Address) { in convertFunctionLineTable()
410 if (LastLE && LastLE->File == FileIdx && LastLE->Line == Row.Line) in convertFunctionLineTable()
415 if (Row.EndSequence) { in convertFunctionLineTable()
420 PrevRow = DWARFDebugLine::Row(); in convertFunctionLineTable()
423 PrevRow = Row; in convertFunctionLineTable()