Home | History | Annotate | Download | only in accessibility

Lines Matching refs:row

168     for (int row = 0; row < numRows; ++row) {
172 RenderTableCell* cell = firstBody->primaryCellAt(row, col);
187 // If the first row is comprised of all <th> tags, assume it is a data table.
188 if (!row && isTHCell)
236 if (row < 5 && row == alternatingRowColorCount) {
249 if (!row && headersInFirstRowCount == numCols && numCols > 1)
273 // Check if there is an alternating row background color indicating a zebra striped style pattern.
277 // If an odd row was the same color as the first row, its not alternating.
280 // If an even row is not the same as the first row, its not alternating.
357 AccessibilityTableRow* row = static_cast<AccessibilityTableRow*>(rowObject);
358 // We need to check every cell for a new row, because cell spans
360 if (appendedRows.contains(row))
363 row->setRowIndex(static_cast<int>(m_rows.size()));
364 m_rows.append(row);
365 if (!row->accessibilityIsIgnored())
366 m_children.append(row);
367 appendedRows.add(row);
439 for (int row = 0; row < numRows; ++row) {
440 AccessibilityChildrenVector rowChildren = m_rows[row]->children();
470 AccessibilityTableCell* AccessibilityTable::cellForColumnAndRow(unsigned column, unsigned row)
473 if (column >= columnCount() || row >= rowCount())
476 // Iterate backwards through the rows in case the desired cell has a rowspan and exists in a previous row.
477 for (unsigned rowIndexCounter = row + 1; rowIndexCounter > 0; --rowIndexCounter) {
496 && (row >= rowRange.first && row < (rowRange.first + rowRange.second)))