Home | History | Annotate | Download | only in rendering

Lines Matching refs:rowHeight

282     spanningRowsHeight.rowHeight.resize(rowSpan);
287 spanningRowsHeight.rowHeight[row] = m_rowPos[actualRow + 1] - m_rowPos[actualRow] - borderSpacingForRow(actualRow);
288 if (!spanningRowsHeight.rowHeight[row])
291 spanningRowsHeight.totalRowsHeight += spanningRowsHeight.rowHeight[row];
331 static void updatePositionIncreasedWithRowHeight(long long extraHeight, long long rowHeight, long long totalHeight, int& accumulatedPositionIncrease, int& remainder)
335 accumulatedPositionIncrease += (extraHeight * rowHeight) / totalHeight;
336 remainder += (extraHeight * rowHeight) % totalHeight;
469 unsigned rowHeight = 0;
474 rowHeight = max(rowHeight, rowSpanCell.cells[0]->logicalHeightForRowSizing() / rowSpanCell.cells[0]->rowSpan());
477 return rowHeight;
482 ASSERT(spanningRowsHeight.rowHeight.size());
488 ASSERT_UNUSED(rowSpan, rowSpan == spanningRowsHeight.rowHeight.size());
490 for (unsigned row = 0; row < spanningRowsHeight.rowHeight.size(); row++) {
492 if (!spanningRowsHeight.rowHeight[row] && rowHasOnlySpanningCells(actualRow) && isHeightNeededForRowHavingOnlySpanningCells(actualRow)) {
493 spanningRowsHeight.rowHeight[row] = calcRowHeightHavingOnlySpanningCells(actualRow);
494 accumulatedPositionIncrease += spanningRowsHeight.rowHeight[row];
587 totalRemainingRowsHeight -= spanningRowsHeight.rowHeight[row - rowIndex];
589 totalAutoRowsHeight += spanningRowsHeight.rowHeight[row - rowIndex];
595 distributeExtraRowSpanHeightToPercentRows(cell, totalPercent, extraRowSpanningHeight, spanningRowsHeight.rowHeight);
596 distributeExtraRowSpanHeightToAutoRows(cell, totalAutoRowsHeight, extraRowSpanningHeight, spanningRowsHeight.rowHeight);
597 distributeExtraRowSpanHeightToRemainingRows(cell, totalRemainingRowsHeight, extraRowSpanningHeight, spanningRowsHeight.rowHeight);
780 int rowHeight = m_rowPos[1] - m_rowPos[0];
783 int toAdd = min<int>(extraLogicalHeight, (totalHeight * m_grid[r].logicalHeight.percent() / 100) - rowHeight);
793 rowHeight = m_rowPos[r + 2] - m_rowPos[r + 1];