Home
last modified time | relevance | path

Searched refs:rowRange (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/accessibility/
DAXARIAGridCell.cpp72 void AXARIAGridCell::rowIndexRange(pair<unsigned, unsigned>& rowRange) in rowIndexRange() argument
80 rowRange.first = toAXTableRow(parent)->rowIndex(); in rowIndexRange()
92 rowRange.first = k / columnCount; in rowIndexRange()
99 rowRange.second = 1; in rowIndexRange()
DAXTableCell.cpp103 void AXTableCell::rowIndexRange(pair<unsigned, unsigned>& rowRange) in rowIndexRange() argument
109 rowRange.first = renderCell->rowIndex(); in rowIndexRange()
110 rowRange.second = renderCell->rowSpan(); in rowIndexRange()
127 rowRange.first += rowOffset; in rowIndexRange()
DAXTable.cpp491 pair<unsigned, unsigned> rowRange; in cellForColumnAndRow() local
494 tableCellChild->rowIndexRange(rowRange); in cellForColumnAndRow()
497 && (row >= rowRange.first && row < (rowRange.first + rowRange.second))) in cellForColumnAndRow()
DAXARIAGridCell.h45 virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange) OVERRIDE;
DAXTableCell.h47 virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange);
/external/chromium_org/third_party/WebKit/Source/web/
DWebAXObject.cpp983 pair<unsigned, unsigned> rowRange; in cellRowIndex() local
984 WebCore::toAXTableCell(m_private.get())->rowIndexRange(rowRange); in cellRowIndex()
985 return rowRange.first; in cellRowIndex()
996 pair<unsigned, unsigned> rowRange; in cellRowSpan() local
997 WebCore::toAXTableCell(m_private.get())->rowIndexRange(rowRange); in cellRowSpan()
998 return rowRange.second; in cellRowSpan()