Home | History | Annotate | Download | only in rendering

Lines Matching defs:toAdd

290                 int toAdd = (tableHeight * m_grid[row].logicalHeight.percent() / 100) - rowsHeight[row - rowIndex];
294 toAdd = min(toAdd, extraRowSpanningHeight);
295 accumulatedPositionIncrease += toAdd;
296 extraRowSpanningHeight -= toAdd;
657 int toAdd = min<int>(extraLogicalHeight, (totalHeight * m_grid[r].logicalHeight.percent() / 100) - rowHeight);
658 // If toAdd is negative, then we don't want to shrink the row (this bug
660 toAdd = max(0, toAdd);
661 totalLogicalHeightAdded += toAdd;
662 extraLogicalHeight -= toAdd;