Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/accessibility/
DAccessibilityARIAGrid.cpp154 pair<int, int> columnRange; in cellForColumnAndRow() local
175 tableCellChild->columnIndexRange(columnRange); in cellForColumnAndRow()
178 … if ((intColumn >= columnRange.first && intColumn < (columnRange.first + columnRange.second)) in cellForColumnAndRow()
DAccessibilityARIAGridCell.cpp103 void AccessibilityARIAGridCell::columnIndexRange(pair<int, int>& columnRange) in columnIndexRange() argument
116 columnRange.first = k; in columnIndexRange()
122 columnRange.second = 1; in columnIndexRange()
DAccessibilityTableCell.cpp131 void AccessibilityTableCell::columnIndexRange(pair<int, int>& columnRange) in columnIndexRange() argument
137 columnRange.first = renderCell->col(); in columnIndexRange()
138 columnRange.second = renderCell->colSpan(); in columnIndexRange()
DAccessibilityARIAGridCell.h47 virtual void columnIndexRange(pair<int, int>& columnRange);
DAccessibilityTableCell.h52 virtual void columnIndexRange(pair<int, int>& columnRange);
/external/webkit/Source/WebCore/accessibility/gtk/
DAccessibilityObjectWrapperAtk.cpp2041 pair<int, int> columnRange; in webkit_accessible_table_get_column_at_index() local
2042 axCell->columnIndexRange(columnRange); in webkit_accessible_table_get_column_at_index()
2043 return columnRange.first; in webkit_accessible_table_get_column_at_index()
2079 pair<int, int> columnRange; in webkit_accessible_table_get_column_extent_at() local
2080 axCell->columnIndexRange(columnRange); in webkit_accessible_table_get_column_extent_at()
2081 return columnRange.second; in webkit_accessible_table_get_column_extent_at()
2105 pair<int, int> columnRange; in webkit_accessible_table_get_column_header() local
2107 cell->columnIndexRange(columnRange); in webkit_accessible_table_get_column_header()
2108 if (columnRange.first <= column && column < columnRange.first + columnRange.second) in webkit_accessible_table_get_column_header()
/external/webkit/Source/WebCore/accessibility/mac/
DAccessibilityObjectWrapper.mm1890 pair<int, int> columnRange;
1891 static_cast<AccessibilityTableCell*>(m_object)->columnIndexRange(columnRange);
1892 return [NSValue valueWithRange:NSMakeRange(columnRange.first, columnRange.second)];