Lines Matching defs:Row
4485 struct Row {
4487 Row *parent;
4496 std::vector<Row> children;
4498 Row(const ValueObjectSP &v, Row *p)
4510 std::vector<Row> &GetChildren() {
4524 children.push_back(Row(valobj->GetChildAtIndex(i), this));
4565 void DrawTreeForChild(Window &window, Row *child, uint32_t reverse_depth) {
5552 m_rows.push_back(Row(valobj_sp, nullptr));
5722 std::vector<Row> m_rows;
5723 Row *m_selected_row = nullptr;
5766 bool DisplayRowObject(Window &window, Row &row, DisplayOptions &options,
5820 void DisplayRows(Window &window, std::vector<Row> &rows,
5828 // Save the row index in each Row structure
5859 int CalculateTotalNumberRows(std::vector<Row> &rows) {
5869 static Row *GetRowForRowIndexImpl(std::vector<Row> &rows, size_t &row_index) {
5878 Row *result = GetRowForRowIndexImpl(children, row_index);
5888 Row *GetRowForRowIndex(size_t row_index) {