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

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXTableCell.cpp 117 RenderTableSection* tableSection = table->topSection();
119 while (tableSection) {
120 if (tableSection == section)
122 rowOffset += tableSection->numRows();
123 tableSection = table->sectionBelow(tableSection, SkipEmptySections);
AXTable.cpp 378 RenderTableSection* tableSection = table->topSection();
379 if (!tableSection)
382 RenderTableSection* initialTableSection = tableSection;
383 while (tableSection) {
386 unsigned numRows = tableSection->numRows();
389 RenderTableRow* renderRow = tableSection->rowRendererAt(rowIndex);
410 tableSection = table->sectionBelow(tableSection, SkipEmptySections);

Completed in 29 milliseconds