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.cpp71 void AXARIAGridCell::rowIndexRange(pair<unsigned, unsigned>& rowRange) in rowIndexRange() argument
79 rowRange.first = toAXTableRow(parent)->rowIndex(); in rowIndexRange()
91 rowRange.first = k / columnCount; in rowIndexRange()
98 rowRange.second = 1; in rowIndexRange()
DAXTableCell.cpp102 void AXTableCell::rowIndexRange(pair<unsigned, unsigned>& rowRange) in rowIndexRange() argument
108 rowRange.first = renderCell->rowIndex(); in rowIndexRange()
109 rowRange.second = renderCell->rowSpan(); in rowIndexRange()
126 rowRange.first += rowOffset; in rowIndexRange()
DAXTable.cpp519 pair<unsigned, unsigned> rowRange; in cellForColumnAndRow() local
522 tableCellChild->rowIndexRange(rowRange); in cellForColumnAndRow()
525 && (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.cpp1071 pair<unsigned, unsigned> rowRange; in cellRowIndex() local
1072 toAXTableCell(m_private.get())->rowIndexRange(rowRange); in cellRowIndex()
1073 return rowRange.first; in cellRowIndex()
1084 pair<unsigned, unsigned> rowRange; in cellRowSpan() local
1085 toAXTableCell(m_private.get())->rowIndexRange(rowRange); in cellRowSpan()
1086 return rowRange.second; in cellRowSpan()