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

  /external/webkit/Source/WebCore/rendering/
RenderTableSection.h 85 CellStruct& cellAt(int row, int col) { return (*m_grid[row].row)[col]; }
86 const CellStruct& cellAt(int row, int col) const { return (*m_grid[row].row)[col]; }
89 CellStruct& c = (*m_grid[row].row)[col];
119 int getBaseline(int row) { return m_grid[row].baseline; }
151 Vector<RowStruct> m_grid; member in class:WebCore::RenderTableSection
RenderTableSection.cpp 146 m_grid[m_cRow].rowRenderer = toRenderTableRow(child);
149 setRowLogicalHeightToRowStyleLogicalHeightIfNotRelative(&m_grid[m_cRow]);
170 if (numRows > static_cast<int>(m_grid.size())) {
174 m_grid.grow(numRows);
179 m_grid[r].row = new Row(nCols);
180 m_grid[r].rowRenderer = 0;
181 m_grid[r].baseline = 0;
182 m_grid[r].logicalHeight = Length();
209 Length cRowLogicalHeight = m_grid[m_cRow].logicalHeight;
214 m_grid[m_cRow].logicalHeight = logicalHeight
    [all...]

Completed in 29 milliseconds