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

  /external/webkit/Source/WebCore/accessibility/
AccessibilityTableCell.cpp 116 RenderTableSection* tableSection = table->header();
117 if (!tableSection)
118 tableSection = table->firstBody();
121 while (tableSection) {
122 if (tableSection == section)
124 rowOffset += tableSection->numRows();
125 tableSection = table->sectionBelow(tableSection, true);
AccessibilityTable.cpp 302 RenderTableSection* tableSection = table->header();
303 if (!tableSection)
304 tableSection = table->firstBody();
306 if (!tableSection)
309 RenderTableSection* initialTableSection = tableSection;
311 while (tableSection) {
315 unsigned numRows = tableSection->numRows();
316 unsigned numCols = tableSection->numColumns();
320 RenderTableCell* cell = tableSection->primaryCellAt(rowIndex, colIndex);
346 tableSection = table->sectionBelow(tableSection, true)
    [all...]

Completed in 41 milliseconds