Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/accessibility/
DAccessibilityARIAGridCell.cpp73 void AccessibilityARIAGridCell::rowIndexRange(pair<int, int>& rowRange) in rowIndexRange() argument
81 rowRange.first = static_cast<AccessibilityTableRow*>(parent)->rowIndex(); in rowIndexRange()
93 rowRange.first = k / columnCount; in rowIndexRange()
100 rowRange.second = 1; in rowIndexRange()
DAccessibilityARIAGrid.cpp155 pair<int, int> rowRange; in cellForColumnAndRow() local
176 tableCellChild->rowIndexRange(rowRange); in cellForColumnAndRow()
179 && (intRow >= rowRange.first && intRow < (rowRange.first + rowRange.second))) in cellForColumnAndRow()
DAccessibilityTableCell.cpp101 void AccessibilityTableCell::rowIndexRange(pair<int, int>& rowRange) in rowIndexRange() argument
107 rowRange.first = renderCell->row(); in rowIndexRange()
108 rowRange.second = renderCell->rowSpan(); in rowIndexRange()
128 rowRange.first += rowOffset; in rowIndexRange()
DAccessibilityARIAGridCell.h45 virtual void rowIndexRange(pair<int, int>& rowRange);
DAccessibilityTableCell.h50 virtual void rowIndexRange(pair<int, int>& rowRange);
/external/webkit/Source/WebCore/accessibility/gtk/
DAccessibilityObjectWrapperAtk.cpp2052 pair<int, int> rowRange; in webkit_accessible_table_get_row_at_index() local
2053 axCell->rowIndexRange(rowRange); in webkit_accessible_table_get_row_at_index()
2054 return rowRange.first; in webkit_accessible_table_get_row_at_index()
2090 pair<int, int> rowRange; in webkit_accessible_table_get_row_extent_at() local
2091 axCell->rowIndexRange(rowRange); in webkit_accessible_table_get_row_extent_at()
2092 return rowRange.second; in webkit_accessible_table_get_row_extent_at()
2123 pair<int, int> rowRange; in webkit_accessible_table_get_row_header() local
2125 cell->rowIndexRange(rowRange); in webkit_accessible_table_get_row_header()
2126 if (rowRange.first <= row && row < rowRange.first + rowRange.second) in webkit_accessible_table_get_row_header()
/external/webkit/Source/WebCore/accessibility/mac/
DAccessibilityObjectWrapper.mm1885 pair<int, int> rowRange;
1886 static_cast<AccessibilityTableCell*>(m_object)->rowIndexRange(rowRange);
1887 return [NSValue valueWithRange:NSMakeRange(rowRange.first, rowRange.second)];