Searched refs:cellAt (Results 1 – 9 of 9) sorted by relevance
/external/webkit/WebCore/rendering/ |
D | RenderTableSection.cpp | 194 while (m_cCol < nCols && (cellAt(m_cRow, m_cCol).cell || cellAt(m_cRow, m_cCol).inColSpan)) in addCell() 243 CellStruct& c = cellAt(m_cRow + r, m_cCol); in addCell() 358 CellStruct current = cellAt(r, c); in setCellWidths() 362 if (r < m_gridRows - 1 && cellAt(r + 1, c).cell == cell) in setCellWidths() 459 CellStruct current = cellAt(r, c); in setCellWidths() 464 if (r > 0 && (cellAt(r-1, c).cell == cell)) in setCellWidths() 584 RenderTableCell* cell = cellAt(r, c).cell; in setCellWidths() 588 if (r < totalRows - 1 && cell == cellAt(r + 1, c).cell) in setCellWidths() 811 const CellStruct& current = cellAt(0, c); in setCellWidths() 864 const CellStruct& current = cellAt(m_gridRows - 1, c); in setCellWidths() [all …]
|
D | RenderTableSection.h | 70 CellStruct& cellAt(int row, int col) { return (*m_grid[row].row)[col]; } in cellAt() function 71 const CellStruct& cellAt(int row, int col) const { return (*m_grid[row].row)[col]; } in cellAt() function
|
D | RenderTable.cpp | 811 … const RenderTableSection::CellStruct& cs = firstNonEmptySection->cellAt(0, leftmostColumn); in calcBorderLeft() 870 … const RenderTableSection::CellStruct& cs = firstNonEmptySection->cellAt(0, rightmostColumn); in calcBorderRight() 1085 aboveCell = section->cellAt(rAbove, effCol); in cellAbove() 1117 belowCell = section->cellAt(rBelow, effCol); in cellBelow() 1137 prevCell = section->cellAt(cell->row(), effCol - 1); in cellBefore() 1150 return cell->section()->cellAt(cell->row(), effCol).cell; in cellAfter()
|
D | AutoTableLayout.cpp | 69 RenderTableSection::CellStruct current = section->cellAt(i, effCol); in recalcColumn() 129 if (cell && (!effCol || section->cellAt(i, effCol-1).cell != cell)) { in recalcColumn()
|
/external/webkit/WebCore/accessibility/ |
D | AccessibilityTable.cpp | 137 RenderTableCell* cell = firstBody->cellAt(row, col).cell; in isTableExposableThroughAccessibility() 238 RenderTableCell* cell = tableSection->cellAt(rowIndex, colIndex).cell; in addChildren() 394 cell = tableSection->cellAt(sectionSpecificRow, column).cell; in cellForColumnAndRow() 402 cell = tableSection->cellAt(testRow, column).cell; in cellForColumnAndRow() 412 cell = tableSection->cellAt(sectionSpecificRow, testCol).cell; in cellForColumnAndRow()
|
D | AccessibilityTableColumn.cpp | 136 RenderTableCell* testCell = section->cellAt(0, testCol).cell; in headerObjectForSection()
|
D | AccessibilityTableCell.cpp | 157 RenderTableCell* headerCell = section->cellAt(row, 0).cell; in titleUIElement()
|
/external/webkit/WebCore/ |
D | ChangeLog-2005-12-19 | 6575 (RenderTable::appendColumn): Same as above, and cellAt() also returns 6577 (RenderTable::cellAbove): cellAt() now returns a CellStruct. 6583 (RenderTableSection::addCell): cellAt() now returns a CellStruct. This 6586 (RenderTableSection::setCellWidths): cellAt() now returns a CellStruct. 6592 (khtml::RenderTableSection::cellAt): Same.
|
D | ChangeLog-2007-10-14 | 69084 (WebCore::RenderTableSection::cellAt):
|