Home
last modified time | relevance | path

Searched refs:CellStruct (Results 1 – 5 of 5) sorted by relevance

/external/webkit/WebCore/rendering/
DRenderTableSection.h56 struct CellStruct { struct
61 typedef Vector<CellStruct> Row; argument
70 CellStruct& cellAt(int row, int col) { return (*m_grid[row].row)[col]; } in cellAt()
71 const CellStruct& cellAt(int row, int col) const { return (*m_grid[row].row)[col]; } in cellAt()
DRenderTableSection.cpp166 CellStruct emptyCellStruct; in ensureRows()
229 CellStruct currentCell; in addCell()
244 CellStruct& c = cellAt(m_cRow + r, m_cCol); in addCell()
279 CellStruct current = row[j]; in setCellWidths()
364 CellStruct current = cellAt(r, c); in setCellWidths()
465 CellStruct current = cellAt(r, c); in setCellWidths()
820 const CellStruct& current = cellAt(0, c); in setCellWidths()
873 const CellStruct& current = cellAt(m_gridRows - 1, c); in setCellWidths()
930 const CellStruct& current = cellAt(r, leftmostColumn); in setCellWidths()
977 const CellStruct& current = cellAt(r, rightmostColumn); in setCellWidths()
[all …]
DRenderTable.cpp800 … const RenderTableSection::CellStruct& cs = firstNonEmptySection->cellAt(0, leftmostColumn); in calcBorderLeft()
859 … const RenderTableSection::CellStruct& cs = firstNonEmptySection->cellAt(0, rightmostColumn); in calcBorderRight()
1071 RenderTableSection::CellStruct aboveCell; in cellAbove()
1103 RenderTableSection::CellStruct belowCell; in cellBelow()
1124 RenderTableSection::CellStruct prevCell; in cellBefore()
DAutoTableLayout.cpp69 RenderTableSection::CellStruct current = section->cellAt(i, effCol); in recalcColumn()
/external/webkit/WebCore/
DChangeLog-2005-12-196568 way of dealing with rowspan and introduces CellStruct for dealing
6569 with colspan. CellStruct is a structure that contains a
6574 (RenderTable::splitColumn): The section grid now returns a CellStruct.
6576 a CellStruct and needs to be set appropriately.
6577 (RenderTable::cellAbove): cellAt() now returns a CellStruct.
6581 (RenderTableSection::ensureRows): Create empty CellStruct to fill the
6583 (RenderTableSection::addCell): cellAt() now returns a CellStruct. This
6586 (RenderTableSection::setCellWidths): cellAt() now returns a CellStruct.