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/
AccessibilityARIAGridCell.cpp 72 void AccessibilityARIAGridCell::rowIndexRange(pair<unsigned, unsigned>& rowRange)
80 rowRange.first = static_cast<AccessibilityTableRow*>(parent)->rowIndex();
92 rowRange.first = k / columnCount;
99 rowRange.second = 1;
AccessibilityARIAGridCell.h 45 virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange) OVERRIDE;
AccessibilityTableCell.h 47 virtual void rowIndexRange(pair<unsigned, unsigned>& rowRange);
AccessibilityTableCell.cpp 103 void AccessibilityTableCell::rowIndexRange(pair<unsigned, unsigned>& rowRange)
109 rowRange.first = renderCell->rowIndex();
110 rowRange.second = renderCell->rowSpan();
127 rowRange.first += rowOffset;
AccessibilityTable.cpp 490 pair<unsigned, unsigned> rowRange;
493 tableCellChild->rowIndexRange(rowRange);
496 && (row >= rowRange.first && row < (rowRange.first + rowRange.second)))
  /external/chromium_org/third_party/WebKit/Source/web/
WebAccessibilityObject.cpp 969 pair<unsigned, unsigned> rowRange;
970 static_cast<WebCore::AccessibilityTableCell*>(m_private.get())->rowIndexRange(rowRange);
971 return rowRange.first;
982 pair<unsigned, unsigned> rowRange;
983 static_cast<WebCore::AccessibilityTableCell*>(m_private.get())->rowIndexRange(rowRange);
984 return rowRange.second;

Completed in 313 milliseconds