Home
last modified time | relevance | path

Searched refs:cellAt (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DRenderTableSection.cpp196 … while (m_cCol < nCols && (cellAt(m_cRow, m_cCol).hasCells() || cellAt(m_cRow, m_cCol).inColSpan)) in addCell()
242 CellStruct& c = cellAt(m_cRow + r, m_cCol); in addCell()
364 CellStruct& current = cellAt(r, c); in setCellLogicalWidths()
467 CellStruct current = cellAt(r, c); in setCellLogicalWidths()
590 CellStruct& cs = cellAt(r, c); in setCellLogicalWidths()
739 CellStruct& cs = cellAt(r, c); in setCellLogicalWidths()
776 const CellStruct& current = cellAt(0, c); in setCellLogicalWidths()
827 const CellStruct& current = cellAt(m_gridRows - 1, c); in setCellLogicalWidths()
880 const CellStruct& current = cellAt(r, 0); in setCellLogicalWidths()
924 const CellStruct& current = cellAt(r, totalCols - 1); in setCellLogicalWidths()
[all …]
DRenderTableSection.h85 CellStruct& cellAt(int row, int col) { return (*m_grid[row].row)[col]; } in cellAt() function
86 const CellStruct& cellAt(int row, int col) const { return (*m_grid[row].row)[col]; } in cellAt() function
DRenderTable.cpp880 const RenderTableSection::CellStruct& cs = firstNonEmptySection->cellAt(0, 0); in calcBorderStart()
938 const RenderTableSection::CellStruct& cs = firstNonEmptySection->cellAt(0, endColumn); in calcBorderEnd()
1150 RenderTableSection::CellStruct& aboveCell = section->cellAt(rAbove, effCol); in cellAbove()
1177 RenderTableSection::CellStruct& belowCell = section->cellAt(rBelow, effCol); in cellBelow()
1193 RenderTableSection::CellStruct& prevCell = section->cellAt(cell->row(), effCol - 1); in cellBefore()
DAutoTableLayout.cpp59 RenderTableSection::CellStruct current = section->cellAt(i, effCol); in recalcColumn()
/external/webkit/Source/WebCore/
DChangeLog-2005-12-196575 (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.
DChangeLog-2007-10-1469084 (WebCore::RenderTableSection::cellAt):