Home
last modified time | relevance | path

Searched refs:rowRange (Results 1 – 6 of 6) sorted by relevance

/external/webkit/WebCore/accessibility/
DAccessibilityTableCell.cpp90 void AccessibilityTableCell::rowIndexRange(pair<int, int>& rowRange) in rowIndexRange() argument
96 rowRange.first = renderCell->row(); in rowIndexRange()
97 rowRange.second = renderCell->rowSpan(); in rowIndexRange()
117 rowRange.first += rowOffset; in rowIndexRange()
DAccessibilityARIAGridCell.cpp66 void AccessibilityARIAGridCell::rowIndexRange(pair<int, int>& rowRange) in rowIndexRange() argument
73 rowRange.first = static_cast<AccessibilityTableRow*>(parent)->rowIndex(); in rowIndexRange()
74 rowRange.second = 1; in rowIndexRange()
DAccessibilityARIAGridCell.h45 virtual void rowIndexRange(pair<int, int>& rowRange);
DAccessibilityTableCell.h50 virtual void rowIndexRange(pair<int, int>& rowRange);
/external/webkit/WebCore/accessibility/gtk/
DAccessibilityObjectWrapperAtk.cpp1406 pair<int, int> rowRange; in webkit_accessible_table_get_row_at_index() local
1407 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() local
1445 axCell->rowIndexRange(rowRange); in webkit_accessible_table_get_row_extent_at()
1446 return rowRange.second; in webkit_accessible_table_get_row_extent_at()
/external/webkit/WebCore/accessibility/mac/
DAccessibilityObjectWrapper.mm1669 pair<int, int> rowRange;
1670 static_cast<AccessibilityTableCell*>(m_object)->rowIndexRange(rowRange);
1671 return [NSValue valueWithRange:NSMakeRange(rowRange.first, rowRange.second)];