HomeSort by relevance Sort by last modified time
    Searched refs:m_grid (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/rendering/
RenderTableSection.h 70 CellStruct& cellAt(int row, int col) { return (*m_grid[row].row)[col]; }
71 const CellStruct& cellAt(int row, int col) const { return (*m_grid[row].row)[col]; }
103 int getBaseline(int row) { return m_grid[row].baseline; }
137 Vector<RowStruct> m_grid; member in class:WebCore::RenderTableSection
RenderTableSection.cpp 135 m_grid[m_cRow].rowRenderer = toRenderTableRow(child);
138 setRowHeightToRowStyleHeightIfNotRelative(&m_grid[m_cRow]);
158 if (numRows > static_cast<int>(m_grid.size())) {
162 m_grid.grow(numRows);
170 m_grid[r].row = new Row(nCols);
171 m_grid[r].row->fill(emptyCellStruct);
172 m_grid[r].rowRenderer = 0;
173 m_grid[r].baseline = 0;
174 m_grid[r].height = Length();
202 Length cRowHeight = m_grid[m_cRow].height
    [all...]

Completed in 148 milliseconds