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 522 pair<unsigned, unsigned> rowRange;
525 tableCellChild->rowIndexRange(rowRange);
528 && (row >= rowRange.first && row < (rowRange.first + rowRange.second)))
  /external/chromium_org/third_party/WebKit/Source/web/
WebAXObject.cpp 1087 pair<unsigned, unsigned> rowRange;
1088 WebCore::toAXTableCell(m_private.get())->rowIndexRange(rowRange);
1089 return rowRange.first;
1100 pair<unsigned, unsigned> rowRange;
1101 WebCore::toAXTableCell(m_private.get())->rowIndexRange(rowRange);
1102 return rowRange.second;

Completed in 357 milliseconds