Searched defs:lastRect (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderBlock.cpp1387 IntRect lastRect = columnRectAt(colInfo, columnCount(colInfo) - 1); local
1389 int overflowLeft = !style()->isLeftToRightDirection() ? min(0, lastRect.x()) : 0;
1390 int overflowRight = style()->isLeftToRightDirection() ? max(width(), lastRect.maxX()) : 0;
1396 IntRect lastRect = columnRectAt(colInfo, columnCount(colInfo) - 1); local
1397 int overflowTop = !style()->isLeftToRightDirection() ? min(0, lastRect.y()) : 0;
1398 int overflowBottom = style()->isLeftToRightDirection() ? max(height(), lastRect.maxY()) : 0;

Completed in 52 milliseconds