Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/rendering/
DRenderBlock.cpp4446 …IntRect gapAndColumnRect(colRect.x() - halfColGap, colRect.y(), colRect.width() + colGap, colRect.… in adjustPointToColumnContents() local
4447 if (point.x() >= gapAndColumnRect.x() && point.x() < gapAndColumnRect.maxX()) { in adjustPointToColumnContents()
4451 if (point.y() < gapAndColumnRect.y()) in adjustPointToColumnContents()
4452 point = gapAndColumnRect.location(); in adjustPointToColumnContents()
4455 else if (point.y() >= gapAndColumnRect.maxY()) { in adjustPointToColumnContents()
4456 point = gapAndColumnRect.location(); in adjustPointToColumnContents()
4457 point.move(0, gapAndColumnRect.height()); in adjustPointToColumnContents()
4468 …IntRect gapAndColumnRect(colRect.x(), colRect.y() - halfColGap, colRect.width(), colRect.height() … in adjustPointToColumnContents() local
4469 if (point.y() >= gapAndColumnRect.y() && point.y() < gapAndColumnRect.maxY()) { in adjustPointToColumnContents()
4473 if (point.x() < gapAndColumnRect.x()) in adjustPointToColumnContents()
[all …]