Home | History | Annotate | Download | only in accessibility

Lines Matching refs:row

60     AccessibilityTableRow* row = static_cast<AccessibilityTableRow*>(child);
61 if (appendedRows.contains(row))
65 unsigned rowCellCount = row->children().size();
69 row->setRowIndex((int)m_rows.size());
70 m_rows.append(row);
72 // Try adding the row if it's not ignoring accessibility,
74 if (!row->accessibilityIsIgnored())
75 m_children.append(row);
77 m_children.append(row->children());
79 appendedRows.add(row);
109 // The children of this non-row will contain all non-ignored elements (recursing to find them).