Lines Matching refs:Row
352 // Get the index of row we're looking for in the line table.
356 // Take file number and line/column from the row.
357 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
358 if (!getFileNameForCompileUnit(CU, LineTable, Row.File,
361 Line = Row.Line;
362 Column = Row.Column;
436 // Get the index of row we're looking for in the line table.
444 // Take file number and line/column from the row.
445 const DWARFDebugLine::Row &Row = LineTable->Rows[RowIndex];
447 getFileNameForCompileUnit(CU, LineTable, Row.File,
449 Lines.push_back(std::make_pair(Row.Address,
451 FuncNameRef, Row.Line, Row.Column)));