Home
last modified time | relevance | path

Searched refs:tableSection (Results 1 – 2 of 2) sorted by relevance

/external/webkit/WebCore/accessibility/
DAccessibilityTable.cpp220 RenderTableSection* tableSection = table->header(); in addChildren() local
221 if (!tableSection) in addChildren()
222 tableSection = table->firstBody(); in addChildren()
224 if (!tableSection) in addChildren()
227 RenderTableSection* initialTableSection = tableSection; in addChildren()
229 while (tableSection) { in addChildren()
233 unsigned numRows = tableSection->numRows(); in addChildren()
234 unsigned numCols = tableSection->numColumns(); in addChildren()
238 RenderTableCell* cell = tableSection->cellAt(rowIndex, colIndex).cell; in addChildren()
259 tableSection = table->sectionBelow(tableSection, true); in addChildren()
[all …]
DAccessibilityTableCell.cpp105 RenderTableSection* tableSection = table->header(); in rowIndexRange() local
106 if (!tableSection) in rowIndexRange()
107 tableSection = table->firstBody(); in rowIndexRange()
110 while (tableSection) { in rowIndexRange()
111 if (tableSection == section) in rowIndexRange()
113 rowOffset += tableSection->numRows(); in rowIndexRange()
114 tableSection = table->sectionBelow(tableSection, true); in rowIndexRange()