Home | History | Annotate | Download | only in DebugInfo

Lines Matching defs:Row

85   struct Row {
86 Row(bool default_is_stmt = false) { reset(default_is_stmt); }
87 /// Called after a row is appended to the matrix.
130 void appendRow(const DWARFDebugLine::Row &state) { Rows.push_back(state); }
140 std::vector<Row> Rows;
143 struct State : public Row, public LineTable {
144 // Special row codes.
150 State() : row(StartParsingLineTable) {}
154 virtual void finalize(uint32_t offset) { row = DoneParsingLineTable; }
155 virtual void reset() { Row::reset(Prologue.DefaultIsStmt); }
157 // The row number that starts at zero for the prologue, and increases for
158 // each row added to the matrix.
159 unsigned row;