Home | History | Annotate | Download | only in rendering

Lines Matching defs:rowIndex

207     unsigned insertionRow = row->rowIndex();
278 const unsigned rowIndex = cell->rowIndex();
285 unsigned actualRow = row + rowIndex;
295 spanningRowsHeight.spanningCellHeightIgnoringBorderSpacing += borderSpacingForRow(rowIndex + rowSpan - 1);
304 const unsigned rowIndex = cell->rowIndex();
311 for (unsigned row = rowIndex; row < (rowIndex + rowSpan); row++) {
314 int toAdd = (tableHeight * m_grid[row].logicalHeight.percent() / 100) - rowsHeight[row - rowIndex];
345 const unsigned rowIndex = cell->rowIndex();
351 for (unsigned row = rowIndex; row < (rowIndex + rowSpan); row++) {
353 updatePositionIncreasedWithRowHeight(extraRowSpanningHeight, rowsHeight[row - rowIndex], totalAutoRowsHeight, accumulatedPositionIncrease, remainder);
378 const unsigned rowIndex = cell->rowIndex();
384 for (unsigned row = rowIndex; row < (rowIndex + rowSpan); row++) {
386 updatePositionIncreasedWithRowHeight(extraRowSpanningHeight, rowsHeight[row - rowIndex], totalRemainingRowsHeight, accumulatedPositionIncrease, remainder);
407 return (cell1->rowIndex() >= cell2->rowIndex() && (cell1->rowIndex() + cell1->rowSpan()) <= (cell2->rowIndex() + cell2->rowSpan()));
415 if (cell1->rowIndex() == cell2->rowIndex() && cell1->rowSpan() == cell2->rowSpan())
425 return (cell1->rowIndex() < cell2->rowIndex());
442 const unsigned rowIndex = cell->rowIndex();
447 unsigned actualRow = row + rowIndex;
450 totalRowSpanCellHeight -= borderSpacingForRow(rowIndex + rowSpan - 1);
486 const unsigned rowIndex = cell->rowIndex();
491 unsigned actualRow = row + rowIndex;
508 // 'rowSpanCells' list is already sorted based on the cells rowIndex in ascending order
519 unsigned rowIndex = cell->rowIndex();
523 unsigned spanningCellEndIndex = rowIndex + rowSpan;
528 if (rowIndex == lastRowIndex && rowSpan == lastRowSpan)
544 lastRowIndex = rowIndex;
571 extraHeightToPropagate = m_rowPos[rowIndex + rowSpan] - originalBeforePosition;
584 for (unsigned row = rowIndex; row < spanningCellEndIndex; row++) {
587 totalRemainingRowsHeight -= spanningRowsHeight.rowHeight[row - rowIndex];
589 totalAutoRowsHeight += spanningRowsHeight.rowHeight[row - rowIndex];
681 if (lastRowSpanCell != cell && cell->rowIndex() == r) {
913 int rowIndex = cell->rowIndex();
914 int rHeight = m_rowPos[rowIndex + cell->rowSpan()] - m_rowPos[rowIndex] - vspacing;
1010 for (unsigned rowIndex = r + 1; rowIndex <= totalRows; rowIndex++)
1011 m_rowPos[rowIndex] += rowHeightIncreaseForPagination;
1235 return elem1->rowIndex() < elem2->rowIndex();
1242 if (elem1->rowIndex() != elem2->rowIndex())
1243 return elem1->rowIndex() < elem2->rowIndex();
1519 void RenderTableSection::rowLogicalHeightChanged(unsigned rowIndex)
1524 setRowLogicalHeightToRowStyleLogicalHeight(m_grid[rowIndex]);
1526 for (RenderTableCell* cell = m_grid[rowIndex].rowRenderer->firstCell(); cell; cell = cell->nextCell())
1527 updateLogicalHeightForCell(m_grid[rowIndex], cell);
1713 LayoutPoint cellLocation(0, m_rowPos[cell->rowIndex()]);