Searched refs:rowRange (Results 1 – 6 of 6) sorted by relevance
72 void AXARIAGridCell::rowIndexRange(pair<unsigned, unsigned>& rowRange) in rowIndexRange() argument80 rowRange.first = toAXTableRow(parent)->rowIndex(); in rowIndexRange()92 rowRange.first = k / columnCount; in rowIndexRange()99 rowRange.second = 1; in rowIndexRange()
103 void AXTableCell::rowIndexRange(pair<unsigned, unsigned>& rowRange) in rowIndexRange() argument109 rowRange.first = renderCell->rowIndex(); in rowIndexRange()110 rowRange.second = renderCell->rowSpan(); in rowIndexRange()127 rowRange.first += rowOffset; in rowIndexRange()
491 pair<unsigned, unsigned> rowRange; in cellForColumnAndRow() local494 tableCellChild->rowIndexRange(rowRange); in cellForColumnAndRow()497 && (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);
983 pair<unsigned, unsigned> rowRange; in cellRowIndex() local984 WebCore::toAXTableCell(m_private.get())->rowIndexRange(rowRange); in cellRowIndex()985 return rowRange.first; in cellRowIndex()996 pair<unsigned, unsigned> rowRange; in cellRowSpan() local997 WebCore::toAXTableCell(m_private.get())->rowIndexRange(rowRange); in cellRowSpan()998 return rowRange.second; in cellRowSpan()