Searched refs:rowRange (Results 1 – 6 of 6) sorted by relevance
90 void AccessibilityTableCell::rowIndexRange(pair<int, int>& rowRange) in rowIndexRange() argument96 rowRange.first = renderCell->row(); in rowIndexRange()97 rowRange.second = renderCell->rowSpan(); in rowIndexRange()117 rowRange.first += rowOffset; in rowIndexRange()
66 void AccessibilityARIAGridCell::rowIndexRange(pair<int, int>& rowRange) in rowIndexRange() argument73 rowRange.first = static_cast<AccessibilityTableRow*>(parent)->rowIndex(); in rowIndexRange()74 rowRange.second = 1; in rowIndexRange()
45 virtual void rowIndexRange(pair<int, int>& rowRange);
50 virtual void rowIndexRange(pair<int, int>& rowRange);
1406 pair<int, int> rowRange; in webkit_accessible_table_get_row_at_index() local1407 axCell->rowIndexRange(rowRange); in webkit_accessible_table_get_row_at_index()1408 return rowRange.first; in webkit_accessible_table_get_row_at_index()1444 pair<int, int> rowRange; in webkit_accessible_table_get_row_extent_at() local1445 axCell->rowIndexRange(rowRange); in webkit_accessible_table_get_row_extent_at()1446 return rowRange.second; in webkit_accessible_table_get_row_extent_at()
1669 pair<int, int> rowRange;1670 static_cast<AccessibilityTableCell*>(m_object)->rowIndexRange(rowRange);1671 return [NSValue valueWithRange:NSMakeRange(rowRange.first, rowRange.second)];