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

/macosx-10.9.5/WebCore-7537.78.1/accessibility/
H A DAccessibilityARIAGridCell.cpp73 void AccessibilityARIAGridCell::rowIndexRange(pair<unsigned, unsigned>& rowRange) argument
81 rowRange.first = static_cast<AccessibilityTableRow*>(parent)->rowIndex();
93 rowRange.first = k / columnCount;
100 rowRange.second = 1;
H A DAccessibilityARIAGridCell.h45 virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange);
H A DAccessibilityTableCell.cpp109 void AccessibilityTableCell::rowIndexRange(pair<unsigned, unsigned>& rowRange) argument
115 rowRange.first = renderCell->rowIndex();
116 rowRange.second = renderCell->rowSpan();
133 rowRange.first += rowOffset;
H A DAccessibilityTableCell.h47 virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange);
H A DAccessibilityTable.cpp523 pair<unsigned, unsigned> rowRange; local
526 tableCellChild->rowIndexRange(rowRange);
529 && (row >= rowRange.first && row < (rowRange.first + rowRange.second)))
/macosx-10.9.5/WebCore-7537.78.1/accessibility/atk/
H A DWebKitAccessibleInterfaceTable.cpp129 pair<unsigned, unsigned> rowRange; local
130 axCell->rowIndexRange(rowRange);
131 return rowRange.first;
167 pair<unsigned, unsigned> rowRange; local
168 axCell->rowIndexRange(rowRange);
169 return rowRange.second;
200 pair<unsigned, unsigned> rowRange; local
202 cell->rowIndexRange(rowRange);
203 if (rowRange.first <= static_cast<unsigned>(row) && static_cast<unsigned>(row) < rowRange
[all...]
/macosx-10.9.5/WebCore-7537.78.1/accessibility/ios/
H A DWebAccessibilityObjectWrapperIOS.mm812 pair<unsigned, unsigned> rowRange;
814 tableCell->rowIndexRange(rowRange);
832 unsigned rowRangeIndex = static_cast<unsigned>(rowRange.first);
834 RefPtr<AccessibilityObject> rowHeader = rowHeaders[rowRange.first];
876 pair<unsigned, unsigned> rowRange;
877 tableCell->rowIndexRange(rowRange);
878 return NSMakeRange(rowRange.first, rowRange.second);
/macosx-10.9.5/WebCore-7537.78.1/accessibility/mac/
H A DWebAccessibilityObjectWrapperMac.mm2504 pair<unsigned, unsigned> rowRange;
2505 static_cast<AccessibilityTableCell*>(m_object)->rowIndexRange(rowRange);
2506 return [NSValue valueWithRange:NSMakeRange(rowRange.first, rowRange.second)];

Completed in 188 milliseconds