Searched refs:rowRange (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/accessibility/
H A DAccessibilityARIAGridCell.cpp71 void AccessibilityARIAGridCell::rowIndexRange(std::pair<unsigned, unsigned>& rowRange) argument
79 rowRange.first = toAccessibilityTableRow(parent)->rowIndex();
91 rowRange.first = k / columnCount;
98 rowRange.second = 1;
H A DAccessibilityARIAGridCell.h45 virtual void rowIndexRange(std::pair<unsigned, unsigned>& rowRange) override;
H A DAccessibilityTableCell.cpp172 std::pair<unsigned, unsigned> rowRange;
173 rowIndexRange(rowRange);
178 for (unsigned row = 0; row < rowRange.first; row++) {
200 std::pair<unsigned, unsigned> rowRange;
201 rowIndexRange(rowRange);
207 AccessibilityTableCell* tableCell = parent->cellForColumnAndRow(column, rowRange.first);
219 void AccessibilityTableCell::rowIndexRange(std::pair<unsigned, unsigned>& rowRange) argument
225 rowRange.first = renderCell->rowIndex();
226 rowRange.second = renderCell->rowSpan();
245 rowRange
[all...]
H A DAccessibilityTableCell.h50 virtual void rowIndexRange(std::pair<unsigned, unsigned>& rowRange);
H A DAccessibilityTable.cpp556 std::pair<unsigned, unsigned> rowRange; local
559 tableCellChild->rowIndexRange(rowRange);
562 && (row >= rowRange.first && row < (rowRange.first + rowRange.second)))
/macosx-10.10/WebCore-7600.1.25/accessibility/atk/
H A DWebKitAccessibleInterfaceTable.cpp142 std::pair<unsigned, unsigned> rowRange; local
143 axCell->rowIndexRange(rowRange);
144 return rowRange.first;
192 std::pair<unsigned, unsigned> rowRange; local
193 axCell->rowIndexRange(rowRange);
194 return rowRange.second;
230 std::pair<unsigned, unsigned> rowRange; local
231 toAccessibilityTableCell(rowHeader.get())->rowIndexRange(rowRange);
232 if (rowRange.first <= static_cast<unsigned>(row) && static_cast<unsigned>(row) < rowRange
[all...]
H A DWebKitAccessibleInterfaceTableCell.cpp105 std::pair<unsigned, unsigned> rowRange;
106 toAccessibilityTableCell(axObject)->rowIndexRange(rowRange);
108 return rowRange.second;
/macosx-10.10/WebCore-7600.1.25/accessibility/ios/
H A DWebAccessibilityObjectWrapperIOS.mm847 std::pair<unsigned, unsigned> rowRange;
849 tableCell->rowIndexRange(rowRange);
867 unsigned rowRangeIndex = static_cast<unsigned>(rowRange.first);
869 RefPtr<AccessibilityObject> rowHeader = rowHeaders[rowRange.first];
911 std::pair<unsigned, unsigned> rowRange;
912 tableCell->rowIndexRange(rowRange);
913 return NSMakeRange(rowRange.first, rowRange.second);
/macosx-10.10/WebCore-7600.1.25/accessibility/mac/
H A DWebAccessibilityObjectWrapperMac.mm2637 std::pair<unsigned, unsigned> rowRange;
2638 toAccessibilityTableCell(m_object)->rowIndexRange(rowRange);
2639 return [NSValue valueWithRange:NSMakeRange(rowRange.first, rowRange.second)];

Completed in 310 milliseconds