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

/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXARIAGridCell.cpp71 void AXARIAGridCell::rowIndexRange(pair<unsigned, unsigned>& rowRange) argument
79 rowRange.first = toAXTableRow(parent)->rowIndex();
91 rowRange.first = k / columnCount;
98 rowRange.second = 1;
H A DAXARIAGridCell.h45 virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange) OVERRIDE;
H A DAXTableCell.cpp102 void AXTableCell::rowIndexRange(pair<unsigned, unsigned>& rowRange) argument
108 rowRange.first = renderCell->rowIndex();
109 rowRange.second = renderCell->rowSpan();
126 rowRange.first += rowOffset;
H A DAXTableCell.h47 virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange);
H A DAXTable.cpp519 pair<unsigned, unsigned> rowRange; local
522 tableCellChild->rowIndexRange(rowRange);
525 && (row >= rowRange.first && row < (rowRange.first + rowRange.second)))
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebAXObject.cpp1071 pair<unsigned, unsigned> rowRange;
1072 toAXTableCell(m_private.get())->rowIndexRange(rowRange);
1073 return rowRange.first;
1084 pair<unsigned, unsigned> rowRange;
1085 toAXTableCell(m_private.get())->rowIndexRange(rowRange);
1086 return rowRange.second;

Completed in 166 milliseconds