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

/external/webkit/Source/WebCore/rendering/
H A DEllipsisBox.cpp118 IntRect boundsRect = IntRect(tx, ty, m_logicalWidth, m_height); local
119 if (visibleToHitTesting() && boundsRect.intersects(result.rectForPoint(x, y))) {
121 if (!result.addNodeToRectBasedTestResult(renderer()->node(), x, y, boundsRect))
H A DRenderTable.cpp1276 IntRect boundsRect = IntRect(tx, ty, width(), height()); local
1277 if (visibleToHitTesting() && (action == HitTestBlockBackground || action == HitTestChildBlockBackground) && boundsRect.intersects(result.rectForPoint(xPos, yPos))) {
1279 if (!result.addNodeToRectBasedTestResult(node(), xPos, yPos, boundsRect))
H A DRenderBox.cpp773 IntRect boundsRect = IntRect(tx, ty, width(), height()); local
774 if (visibleToHitTesting() && action == HitTestForeground && boundsRect.intersects(result.rectForPoint(xPos, yPos))) {
776 if (!result.addNodeToRectBasedTestResult(node(), xPos, yPos, boundsRect))
/external/webkit/Source/WebCore/platform/
H A DWidget.h163 IntRect boundsRect() const { return IntRect(0, 0, width(), height()); } function in class:WebCore::Widget
171 void invalidate() { invalidateRect(boundsRect()); }

Completed in 362 milliseconds