HomeSort by relevance Sort by last modified time
    Searched refs:rowRange (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXARIAGridCell.cpp 71 void AXARIAGridCell::rowIndexRange(pair<unsigned, unsigned>& rowRange)
79 rowRange.first = toAXTableRow(parent)->rowIndex();
91 rowRange.first = k / columnCount;
98 rowRange.second = 1;
AXARIAGridCell.h 45 virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange) OVERRIDE;
AXTableCell.cpp 102 void AXTableCell::rowIndexRange(pair<unsigned, unsigned>& rowRange)
108 rowRange.first = renderCell->rowIndex();
109 rowRange.second = renderCell->rowSpan();
126 rowRange.first += rowOffset;
AXTableCell.h 47 virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange);
AXTable.cpp 519 pair<unsigned, unsigned> rowRange;
522 tableCellChild->rowIndexRange(rowRange);
525 && (row >= rowRange.first && row < (rowRange.first + rowRange.second)))
  /external/chromium_org/third_party/WebKit/Source/web/
WebAXObject.cpp 1071 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 49 milliseconds