Lines Matching refs:LayoutRect

77     LayoutRect portionRect(flowThreadPortionRectAt(columnIndex));
79 LayoutRect columnRect(columnRectAt(columnIndex));
275 LayoutRect rect(flowThreadPortionRect());
284 LayoutRect layoutRect = flowThread()->layoutOverflowRect();
286 setFlowThreadPortionRect(LayoutRect(rect.x(), rect.y(), isHorizontal ? rect.width() : logicalHeightWithOverflow, isHorizontal ? logicalHeightWithOverflow : rect.height()));
334 LayoutRect RenderMultiColumnSet::columnRectAt(unsigned index) const
352 return LayoutRect(colLogicalLeft, colLogicalTop, colLogicalWidth, colLogicalHeight);
353 return LayoutRect(colLogicalTop, colLogicalLeft, colLogicalHeight, colLogicalWidth);
358 LayoutRect portionRect(flowThreadPortionRect());
376 LayoutRect RenderMultiColumnSet::flowThreadPortionRectAt(unsigned index) const
378 LayoutRect portionRect = flowThreadPortionRect();
380 portionRect = LayoutRect(portionRect.x(), portionRect.y() + index * pageLogicalHeight(), portionRect.width(), pageLogicalHeight());
382 portionRect = LayoutRect(portionRect.x() + index * pageLogicalHeight(), portionRect.y(), pageLogicalHeight(), portionRect.height());
386 LayoutRect RenderMultiColumnSet::flowThreadPortionOverflowRect(const LayoutRect& portionRect, unsigned index, unsigned colCount, LayoutUnit colGap) const
405 LayoutRect overflowRect = overflowRectForFlowThreadPortion(portionRect, isFirstColumn && isFirstRegion(), isLastColumn && isLastRegion());
428 void RenderMultiColumnSet::paintInvalidationForFlowThreadContent(const LayoutRect& paintInvalidationRect) const
432 LayoutRect flowThreadPaintInvalidationRect(paintInvalidationRect);
437 LayoutRect clippedRect(flowThreadPaintInvalidationRect);
453 LayoutRect colRect = columnRectAt(i);
456 LayoutRect flowThreadPortion = flowThreadPortionRectAt(i);
459 LayoutRect flowThreadOverflowPortion = flowThreadPortionOverflowRect(flowThreadPortion, i, colCount, colGap);
466 void RenderMultiColumnSet::collectLayerFragments(LayerFragments& fragments, const LayoutRect& layerBoundingBox, const LayoutRect& dirtyRect)
484 LayoutRect layerBoundsInFlowThread(layerBoundingBox);
489 LayoutRect clippedRect(layerBoundsInFlowThread);
516 LayoutRect flowThreadPortion = flowThreadPortionRectAt(i);
519 LayoutRect flowThreadOverflowPortion = flowThreadPortionOverflowRect(flowThreadPortion, i, colCount, colGap);
522 LayoutRect clippedRect(layerBoundsInFlowThread);
553 LayoutRect translatedDirtyRect(dirtyRect);
567 LayoutRect flippedFlowThreadOverflowPortion(flowThreadOverflowPortion);
581 LayoutRect lastRect = columnRectAt(colCount - 1);