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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableSection.cpp 170 m_grid[insertionRow].rowRenderer = row;
174 setRowLogicalHeightToRowStyleLogicalHeight(m_grid[insertionRow]);
185 if (numRows <= m_grid.size())
188 unsigned oldSize = m_grid.size();
189 m_grid.grow(numRows);
192 for (unsigned row = oldSize; row < m_grid.size(); ++row)
193 m_grid[row].row.grow(effectiveColumnCount);
219 updateLogicalHeightForCell(m_grid[insertionRow], cell);
223 m_grid[insertionRow].rowRenderer = row;
282 const int tableHeight = m_rowPos[m_grid.size()] + extraRowSpanningHeight
    [all...]
RenderTableSection.h 162 CellStruct& cellAt(unsigned row, unsigned col) { return m_grid[row].row[col]; }
163 const CellStruct& cellAt(unsigned row, unsigned col) const { return m_grid[row].row[col]; }
166 CellStruct& c = m_grid[row].row[col];
170 RenderTableRow* rowRendererAt(unsigned row) const { return m_grid[row].rowRenderer; }
186 unsigned numRows() const { return m_grid.size(); }
198 LayoutUnit rowBaseline(unsigned row) { return m_grid[row].baseline; }
240 int borderSpacingForRow(unsigned row) const { return m_grid[row].rowRenderer ? table()->vBorderSpacing() : 0; }
259 CellSpan fullTableRowSpan() const { return CellSpan(0, m_grid.size()); }
277 Vector<RowStruct> m_grid; member in class:WebCore::FINAL
RenderGrid.cpp 95 // 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 if (!m_grid.size())
113 const size_t endOfVaryingTrackIndex = (m_direction == ForColumns) ? m_grid.size() : m_grid[0].size();
115 const Vector<RenderBox*>& children = m_grid[m_rowIndex][m_columnIndex];
126 if (m_grid.isEmpty())
130 const size_t endOfVaryingTrackIndex = (m_direction == ForColumns) ? m_grid.size() : m_grid[0].size()
    [all...]
RenderGrid.h 137 return m_grid[0].size();
142 return m_grid.size();
145 Vector<Vector<Vector<RenderBox*, 1> > > m_grid; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleRareNonInheritedData.cpp 98 , m_grid(o.m_grid)
173 && m_grid == o.m_grid
RenderStyle.h     [all...]
StyleRareNonInheritedData.h 109 DataRef<StyleGridData> m_grid; member in class:WebCore::StyleRareNonInheritedData
RenderStyle.cpp 130 rareNonInheritedData.access()->m_grid.init();
423 if (rareNonInheritedData->m_grid.get() != other->rareNonInheritedData->m_grid.get()
    [all...]

Completed in 971 milliseconds