Home
last modified time | relevance | path

Searched refs:gapAndColumnRect (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBlock.cpp3674 …LayoutRect gapAndColumnRect(colRect.x() - halfColGap, colRect.y(), colRect.width() + colGap, colRe… in adjustPointToColumnContents() local
3675 if (point.x() >= gapAndColumnRect.x() && point.x() < gapAndColumnRect.maxX()) { in adjustPointToColumnContents()
3680 if (point.y() < gapAndColumnRect.y()) in adjustPointToColumnContents()
3681 point = gapAndColumnRect.location(); in adjustPointToColumnContents()
3684 else if (point.y() >= gapAndColumnRect.maxY()) { in adjustPointToColumnContents()
3685 point = gapAndColumnRect.location(); in adjustPointToColumnContents()
3686 point.move(0, gapAndColumnRect.height()); in adjustPointToColumnContents()
3706 …LayoutRect gapAndColumnRect(colRect.x(), colRect.y() - halfColGap, colRect.width(), colRect.height… in adjustPointToColumnContents() local
3707 if (point.y() >= gapAndColumnRect.y() && point.y() < gapAndColumnRect.maxY()) { in adjustPointToColumnContents()
3712 if (point.x() < gapAndColumnRect.x()) in adjustPointToColumnContents()
[all …]