Home | History | Annotate | Download | only in rendering

Lines Matching refs:m_table

87     unsigned nEffCols = m_table->numEffCols();
92 for (RenderTableCol* col = m_table->firstColumn(); col; col = col->nextColumn()) {
111 m_table->appendColumn(span);
116 if (span < m_table->spanOfEffCol(currentEffectiveColumn)) {
117 m_table->splitColumn(currentEffectiveColumn, span);
121 spanInCurrentEffectiveColumn = m_table->spanOfEffCol(currentEffectiveColumn);
134 RenderTableSection* section = m_table->topNonEmptySection();
154 float eSpan = m_table->spanOfEffCol(currentColumn);
182 Length tableLogicalWidth = m_table->style()->logicalWidth();
184 minWidth = maxWidth = max<int>(minWidth, tableLogicalWidth.value() - m_table->bordersPaddingAndSpacingInRowDirection());
198 if (m_table->style()->logicalWidth().isPercent() && maxWidth < tableMaxWidth)
204 int tableLogicalWidth = m_table->logicalWidth() - m_table->bordersPaddingAndSpacingInRowDirection();
205 unsigned nEffCols = m_table->numEffCols();
212 nEffCols = m_table->numEffCols();
237 autoSpan += m_table->spanOfEffCol(i);
241 int hspacing = m_table->hBorderSpacing();
275 unsigned span = m_table->spanOfEffCol(i);
308 m_table->setColumnPosition(i, pos);
311 int colPositionsSize = m_table->columnPositions().size();
313 m_table->setColumnPosition(colPositionsSize - 1, pos);
322 m_table->recalcSectionsIfNeeded();
323 for (RenderTableSection* section = m_table->topNonEmptySection(); section; section = m_table->sectionBelow(section)) {