Searched refs:m_grid (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableSection.cpp172 m_grid[insertionRow].rowRenderer = row;
176 setRowLogicalHeightToRowStyleLogicalHeight(m_grid[insertionRow]);
187 if (numRows <= m_grid.size())
190 unsigned oldSize = m_grid.size();
191 m_grid.grow(numRows);
194 for (unsigned row = oldSize; row < m_grid.size(); ++row)
195 m_grid[row].row.grow(effectiveColumnCount);
221 updateLogicalHeightForCell(m_grid[insertionRow], cell);
225 m_grid[insertionRow].rowRenderer = row;
259 unsigned totalCols = m_grid[ro
[all...]
H A DRenderTableSection.h164 CellStruct& cellAt(unsigned row, unsigned col) { return m_grid[row].row[col]; }
165 const CellStruct& cellAt(unsigned row, unsigned col) const { return m_grid[row].row[col]; }
168 CellStruct& c = m_grid[row].row[col];
172 RenderTableRow* rowRendererAt(unsigned row) const { return m_grid[row].rowRenderer; }
188 unsigned numRows() const { return m_grid.size(); }
200 LayoutUnit rowBaseline(unsigned row) { return m_grid[row].baseline; }
242 int borderSpacingForRow(unsigned row) const { return m_grid[row].rowRenderer ? table()->vBorderSpacing() : 0; }
266 CellSpan fullTableRowSpan() const { return CellSpan(0, m_grid.size()); }
284 Vector<RowStruct> m_grid; member in class:WebCore::FINAL
H A DRenderGrid.cpp95 // GridIterator(m_grid, ForColumns, 1) will walk over the rows of the 2nd column.
97 : m_grid(grid)
103 ASSERT(m_rowIndex < m_grid.size());
104 ASSERT(m_columnIndex < m_grid[0].size());
109 ASSERT(!m_grid.isEmpty());
112 const size_t endOfVaryingTrackIndex = (m_direction == ForColumns) ? m_grid.size() : m_grid[0].size();
114 const GridCell& children = m_grid[m_rowIndex][m_columnIndex];
125 ASSERT(!m_grid.isEmpty());
128 const size_t endOfVaryingTrackIndex = (m_direction == ForColumns) ? m_grid
[all...]
H A DRenderGrid.h141 return m_grid[0].size();
146 return m_grid.size();
151 GridRepresentation m_grid; member in class:WebCore::FINAL
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleRareNonInheritedData.cpp103 , m_grid(o.m_grid)
185 && m_grid == o.m_grid
H A DStyleRareNonInheritedData.h112 DataRef<StyleGridData> m_grid; member in class:WebCore::StyleRareNonInheritedData
H A DRenderStyle.h760 const Vector<GridTrackSize>& gridDefinitionColumns() const { return rareNonInheritedData->m_grid->m_gridDefinitionColumns; }
761 const Vector<GridTrackSize>& gridDefinitionRows() const { return rareNonInheritedData->m_grid->m_gridDefinitionRows; }
762 const NamedGridLinesMap& namedGridColumnLines() const { return rareNonInheritedData->m_grid->m_namedGridColumnLines; }
763 const NamedGridLinesMap& namedGridRowLines() const { return rareNonInheritedData->m_grid->m_namedGridRowLines; }
764 const OrderedNamedGridLines& orderedNamedGridColumnLines() const { return rareNonInheritedData->m_grid->m_orderedNamedGridColumnLines; }
765 const OrderedNamedGridLines& orderedNamedGridRowLines() const { return rareNonInheritedData->m_grid->m_orderedNamedGridRowLines; }
766 const NamedGridAreaMap& namedGridArea() const { return rareNonInheritedData->m_grid->m_namedGridArea; }
767 size_t namedGridAreaRowCount() const { return rareNonInheritedData->m_grid->m_namedGridAreaRowCount; }
768 size_t namedGridAreaColumnCount() const { return rareNonInheritedData->m_grid->m_namedGridAreaColumnCount; }
769 GridAutoFlow gridAutoFlow() const { return rareNonInheritedData->m_grid
[all...]
H A DRenderStyle.cpp128 rareNonInheritedData.access()->m_grid.init();
446 if (rareNonInheritedData->m_grid.get() != other->rareNonInheritedData->m_grid.get()

Completed in 101 milliseconds