Home | History | Annotate | Download | only in DebugInfo

Lines Matching defs:Row

324   // Get the index of row we're looking for in the line table.
328 // Take file number and line/column from the row.
329 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
330 if (!getFileNameForCompileUnit(CU, LineTable, Row.File,
333 Line = Row.Line;
334 Column = Row.Column;
408 // Get the index of row we're looking for in the line table.
416 // Take file number and line/column from the row.
417 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
419 getFileNameForCompileUnit(CU, LineTable, Row.File,
421 Lines.push_back(std::make_pair(Row.Address,
423 FuncNameRef, Row.Line, Row.Column)));