Searched refs:rowRange (Results 1 – 6 of 6) sorted by relevance
71 void AXARIAGridCell::rowIndexRange(pair<unsigned, unsigned>& rowRange) in rowIndexRange() argument79 rowRange.first = toAXTableRow(parent)->rowIndex(); in rowIndexRange()91 rowRange.first = k / columnCount; in rowIndexRange()98 rowRange.second = 1; in rowIndexRange()
102 void AXTableCell::rowIndexRange(pair<unsigned, unsigned>& rowRange) in rowIndexRange() argument108 rowRange.first = renderCell->rowIndex(); in rowIndexRange()109 rowRange.second = renderCell->rowSpan(); in rowIndexRange()126 rowRange.first += rowOffset; in rowIndexRange()
519 pair<unsigned, unsigned> rowRange; in cellForColumnAndRow() local522 tableCellChild->rowIndexRange(rowRange); in cellForColumnAndRow()525 && (row >= rowRange.first && row < (rowRange.first + rowRange.second))) in cellForColumnAndRow()
45 virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange) OVERRIDE;
47 virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange);
1071 pair<unsigned, unsigned> rowRange; in cellRowIndex() local1072 toAXTableCell(m_private.get())->rowIndexRange(rowRange); in cellRowIndex()1073 return rowRange.first; in cellRowIndex()1084 pair<unsigned, unsigned> rowRange; in cellRowSpan() local1085 toAXTableCell(m_private.get())->rowIndexRange(rowRange); in cellRowSpan()1086 return rowRange.second; in cellRowSpan()