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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableSection.cpp116 visitor->trace(m_grid);
190 m_grid[insertionRow].rowRenderer = row;
194 setRowLogicalHeightToRowStyleLogicalHeight(m_grid[insertionRow]);
205 if (numRows <= m_grid.size())
208 unsigned oldSize = m_grid.size();
209 m_grid.grow(numRows);
212 for (unsigned row = oldSize; row < m_grid.size(); ++row)
213 m_grid[row].row.grow(effectiveColumnCount);
239 updateLogicalHeightForCell(m_grid[insertionRow], cell);
243 m_grid[insertionRo
[all...]
H A DRenderTableSection.h174 CellStruct& cellAt(unsigned row, unsigned col) { return m_grid[row].row[col]; }
175 const CellStruct& cellAt(unsigned row, unsigned col) const { return m_grid[row].row[col]; }
178 CellStruct& c = m_grid[row].row[col];
182 RenderTableRow* rowRendererAt(unsigned row) const { return m_grid[row].rowRenderer; }
198 unsigned numRows() const { return m_grid.size(); }
210 LayoutUnit rowBaseline(unsigned row) { return m_grid[row].baseline; }
258 int borderSpacingForRow(unsigned row) const { return m_grid[row].rowRenderer ? table()->vBorderSpacing() : 0; }
284 CellSpan fullTableRowSpan() const { return CellSpan(0, m_grid.size()); }
296 WillBeHeapVector<RowStruct> m_grid; member in class:blink::FINAL
H A DRenderGrid.cpp97 // GridIterator(m_grid, ForColumns, 1) will walk over the rows of the 2nd column.
99 : m_grid(grid)
105 ASSERT(m_rowIndex < m_grid.size());
106 ASSERT(m_columnIndex < m_grid[0].size());
111 ASSERT(!m_grid.isEmpty());
114 const size_t endOfVaryingTrackIndex = (m_direction == ForColumns) ? m_grid.size() : m_grid[0].size();
116 const GridCell& children = m_grid[m_rowIndex][m_columnIndex];
128 size_t maxRows = std::min(m_rowIndex + rowSpan, m_grid.size());
129 size_t maxColumns = std::min(m_columnIndex + columnSpan, m_grid[
[all...]
H A DRenderGrid.h56 const GridCell& gridCell(int row, int column) { return m_grid[row][column]; }
140 return m_grid[0].size();
145 return m_grid.size();
149 GridRepresentation m_grid; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleRareNonInheritedData.cpp119 , m_grid(o.m_grid)
209 && m_grid == o.m_grid
H A DStyleRareNonInheritedData.h114 DataRef<StyleGridData> m_grid; member in class:blink::StyleRareNonInheritedData
H A DRenderStyle.h778 const Vector<GridTrackSize>& gridTemplateColumns() const { return rareNonInheritedData->m_grid->m_gridTemplateColumns; }
779 const Vector<GridTrackSize>& gridTemplateRows() const { return rareNonInheritedData->m_grid->m_gridTemplateRows; }
780 const NamedGridLinesMap& namedGridColumnLines() const { return rareNonInheritedData->m_grid->m_namedGridColumnLines; }
781 const NamedGridLinesMap& namedGridRowLines() const { return rareNonInheritedData->m_grid->m_namedGridRowLines; }
782 const OrderedNamedGridLines& orderedNamedGridColumnLines() const { return rareNonInheritedData->m_grid->m_orderedNamedGridColumnLines; }
783 const OrderedNamedGridLines& orderedNamedGridRowLines() const { return rareNonInheritedData->m_grid->m_orderedNamedGridRowLines; }
784 const NamedGridAreaMap& namedGridArea() const { return rareNonInheritedData->m_grid->m_namedGridArea; }
785 size_t namedGridAreaRowCount() const { return rareNonInheritedData->m_grid->m_namedGridAreaRowCount; }
786 size_t namedGridAreaColumnCount() const { return rareNonInheritedData->m_grid->m_namedGridAreaColumnCount; }
787 GridAutoFlow gridAutoFlow() const { return static_cast<GridAutoFlow>(rareNonInheritedData->m_grid
[all...]
H A DRenderStyle.cpp131 rareNonInheritedData.access()->m_grid.init();
440 || rareNonInheritedData->m_grid.get() != other.rareNonInheritedData->m_grid.get()

Completed in 1009 milliseconds