Home | History | Annotate | Download | only in accessibility

Lines Matching defs:AXTable

30 #include "core/accessibility/AXTable.h"
51 AXTable::AXTable(RenderObject* renderer)
58 AXTable::~AXTable()
62 void AXTable::init()
68 PassRefPtr<AXTable> AXTable::create(RenderObject* renderer)
70 return adoptRef(new AXTable(renderer));
73 bool AXTable::hasARIARole() const
85 bool AXTable::isAXTable() const
102 bool AXTable::isDataTable() const
176 // If there's only one cell, it's not a good AXTable candidate.
330 bool AXTable::isTableExposableThroughAccessibility() const
333 // <table> should be exposed as an AXTable. The goal
348 void AXTable::clearChildren()
360 void AXTable::addChildren()
429 AXObject* AXTable::headerContainer()
441 AXObject::AccessibilityChildrenVector& AXTable::columns()
448 AXObject::AccessibilityChildrenVector& AXTable::rows()
455 void AXTable::columnHeaders(AccessibilityChildrenVector& headers)
471 void AXTable::cells(AXObject::AccessibilityChildrenVector& cells)
485 unsigned AXTable::columnCount()
492 unsigned AXTable::rowCount()
499 AXTableCell* AXTable::cellForColumnAndRow(unsigned column, unsigned row)
533 AccessibilityRole AXTable::roleValue() const
541 bool AXTable::computeAccessibilityIsIgnored() const
555 String AXTable::title() const