Home | History | Annotate | Download | only in DebugInfo

Lines Matching refs:Row

87   struct Row {
88 Row(bool default_is_stmt = false) { reset(default_is_stmt); }
89 /// Called after a row is appended to the matrix.
94 static bool orderByAddress(const Row& LHS, const Row& RHS) {
167 void appendRow(const DWARFDebugLine::Row &state) { Rows.push_back(state); }
177 // Returns the index of the row with file/line info for a given address,
178 // or -1 if there is no such row.
194 typedef std::vector<Row> RowVector;
202 struct State : public Row, public Sequence, public LineTable {
203 // Special row codes.
209 State() : row(StartParsingLineTable) {}
215 Row::reset(Prologue.DefaultIsStmt);
219 // The row number that starts at zero for the prologue, and increases for
220 // each row added to the matrix.
221 unsigned row;