Searched refs:rectForPoint (Results 1 – 13 of 13) sorted by relevance
/external/webkit/Source/WebCore/rendering/ |
D | HitTestResult.h | 106 IntRect rectForPoint(int x, int y) const; 107 IntRect rectForPoint(const IntPoint&) const; 108 …static IntRect rectForPoint(const IntPoint&, unsigned topPadding, unsigned rightPadding, unsigned … 148 inline IntRect HitTestResult::rectForPoint(int x, int y) const in rectForPoint() function 150 … return rectForPoint(IntPoint(x, y), m_topPadding, m_rightPadding, m_bottomPadding, m_leftPadding); in rectForPoint() 158 inline IntRect HitTestResult::rectForPoint(const IntPoint& point) const in rectForPoint() function 160 return rectForPoint(point, m_topPadding, m_rightPadding, m_bottomPadding, m_leftPadding); in rectForPoint()
|
D | HitTestResult.cpp | 562 return !rect.contains(rectForPoint(x, y)); in addNodeToRectBasedTestResult() 593 return !rect.contains(rectForPoint(x, y)); in addNodeToRectBasedTestResult() 616 IntRect HitTestResult::rectForPoint(const IntPoint& point, unsigned topPadding, unsigned rightPaddi… in rectForPoint() function in WebCore::HitTestResult
|
D | EllipsisBox.cpp | 119 if (visibleToHitTesting() && boundsRect.intersects(result.rectForPoint(x, y))) { in nodeAtPoint()
|
D | RenderTable.cpp | 1262 … if (!hasOverflowClip() || overflowClipRect(tx, ty).intersects(result.rectForPoint(xPos, yPos))) { in nodeAtPoint() 1276 …action == HitTestChildBlockBackground) && boundsRect.intersects(result.rectForPoint(xPos, yPos))) { in nodeAtPoint()
|
D | InlineFlowBox.cpp | 906 if (!overflowRect.intersects(result.rectForPoint(x, y))) in nodeAtPoint() 940 if (visibleToHitTesting() && rect.intersects(result.rectForPoint(x, y))) { in nodeAtPoint()
|
D | RenderBlock.cpp | 3945 if (!overflowBox.intersects(result.rectForPoint(_x, _y))) in nodeAtPoint() 3959 IntRect hitTestArea(result.rectForPoint(_x, _y)); in nodeAtPoint() 3988 if (visibleToHitTesting() && boundsRect.intersects(result.rectForPoint(_x, _y))) { in nodeAtPoint() 4057 if (colRect.intersects(result.rectForPoint(x, y))) { in hitTestColumns() 4064 if (result.isRectBasedTest() && !colRect.contains(result.rectForPoint(x, y))) in hitTestColumns()
|
D | RenderTableSection.cpp | 1263 if (hasOverflowClip() && !overflowClipRect(tx, ty).intersects(result.rectForPoint(xPos, yPos))) in setCellLogicalWidths()
|
D | InlineTextBox.cpp | 354 …cation != cFullTruncation && visibleToHitTesting() && rect.intersects(result.rectForPoint(x, y))) { in nodeAtPoint()
|
D | RenderLayer.cpp | 3008 IntRect hitTestArea = result.rectForPoint(hitTestPoint); in hitTestLayer() 3312 … if (!localClipRect.isEmpty() && localClipRect.intersects(result.rectForPoint(hitTestPoint))) { in hitTestChildLayerColumns()
|
D | RenderBox.cpp | 774 …sting() && action == HitTestForeground && boundsRect.intersects(result.rectForPoint(xPos, yPos))) { in nodeAtPoint()
|
/external/webkit/Source/WebKit/qt/Api/ |
D | qwebpage.cpp | 1590 …IntRect touchRect(HitTestResult::rectForPoint(view->windowToContents(IntPoint(x, y)), m_topPadding… in findCandidatePointForTouch()
|
/external/webkit/Source/WebCore/dom/ |
D | Document.cpp | 1129 …else if (!frameView->visibleContentRect().intersects(HitTestResult::rectForPoint(point, topPadding… in nodesFromRect()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 38741 Rename HitTestResult::rectFromPoint to rectForPoint 38753 (WebCore::HitTestResult::rectForPoint): 38755 (WebCore::HitTestResult::rectForPoint):
|