Home | History | Annotate | Download | only in DebugInfo

Lines Matching refs:row

51 void DWARFDebugLine::Row::postAppend() {
57 void DWARFDebugLine::Row::reset(bool default_is_stmt) {
70 void DWARFDebugLine::Row::dump(raw_ostream &OS) const {
88 for (std::vector<Row>::const_iterator pos = Rows.begin(),
97 ++row; // Increase the row number.
99 Row::postAppend();
218 // append a row to the matrix using the current values of the
221 // with a DW_LNE_end_sequence instruction which creates a row whose
280 // Takes no arguments. Append a row to the matrix using the
437 static bool findMatchingAddress(const DWARFDebugLine::Row& row1,
438 const DWARFDebugLine::Row& row2) {
449 DWARFDebugLine::Row row;
450 row.Address = address;
451 typedef std::vector<Row>::const_iterator iterator;
454 iterator pos = std::lower_bound(begin_pos, end_pos, row,
461 // pointer arithmetic to find the row index (which will be one less