Home
last modified time | relevance | path

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

/external/webkit/WebCore/rendering/
DRenderTableSection.cpp135 m_grid[m_cRow].rowRenderer = toRenderTableRow(child); in addChild()
138 setRowHeightToRowStyleHeightIfNotRelative(&m_grid[m_cRow]); in addChild()
158 if (numRows > static_cast<int>(m_grid.size())) { in ensureRows()
162 m_grid.grow(numRows); in ensureRows()
170 m_grid[r].row = new Row(nCols); in ensureRows()
171 m_grid[r].row->fill(emptyCellStruct); in ensureRows()
172 m_grid[r].rowRenderer = 0; in ensureRows()
173 m_grid[r].baseline = 0; in ensureRows()
174 m_grid[r].height = Length(); in ensureRows()
202 Length cRowHeight = m_grid[m_cRow].height; in addCell()
[all …]
DRenderTableSection.h70 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()
103 int getBaseline(int row) { return m_grid[row].baseline; } in getBaseline()
137 Vector<RowStruct> m_grid; variable