Home | History | Annotate | Download | only in desktop_capture

Lines Matching defs:Rows

25 // Internally each region is stored as a set of rows where each row contains one
59 // Type used to store list of rows in the region. The bottom position of row
60 // is used as the key so that rows are always ordered by their position. The
62 typedef std::map<int, Row*> Rows;
80 // |row_span_| matches spans on consecutive rows then they are also merged
84 Rows::const_iterator row_;
85 Rows::const_iterator previous_row_;
156 // the region). If the rows were merged |row| remains a valid iterator to the
158 void MergeWithPrecedingRow(Rows::iterator row);
160 Rows rows_;