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

/external/webkit/WebCore/rendering/
H A DRenderForeignObject.cpp112 bool RenderForeignObject::nodeAtFloatPoint(const HitTestRequest& request, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction) argument
115 return RenderBlock::nodeAtPoint(request, result, static_cast<int>(localPoint.x()), static_cast<int>(localPoint.y()), 0, 0, hitTestAction);
H A DRenderSVGContainer.cpp167 bool RenderSVGContainer::nodeAtFloatPoint(const HitTestRequest& request, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction) argument
176 if (child->nodeAtFloatPoint(request, result, localPoint, hitTestAction)) {
H A DRenderSVGImage.cpp106 bool RenderSVGImage::nodeAtFloatPoint(const HitTestRequest&, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction) argument
109 if (hitTestAction != HitTestForeground)
H A DRenderTextControlMultiLine.cpp64 bool RenderTextControlMultiLine::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction) argument
66 if (!RenderTextControl::nodeAtPoint(request, result, x, y, tx, ty, hitTestAction))
H A DTextControlInnerElements.cpp53 bool RenderTextControlInnerBlock::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction) argument
61 return RenderBlock::nodeAtPoint(request, result, x, y, tx, ty, placeholderIsVisible ? HitTestBlockBackground : hitTestAction);
H A DRenderPath.cpp262 bool RenderPath::nodeAtFloatPoint(const HitTestRequest&, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction) argument
265 if (hitTestAction != HitTestForeground)
H A DRenderSVGRoot.cpp271 bool RenderSVGRoot::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int _x, int _y, int _tx, int _ty, HitTestAction hitTestAction) argument
287 if (child->nodeAtFloatPoint(request, result, localPoint, hitTestAction)) {
H A DRenderSVGText.cpp96 bool RenderSVGText::nodeAtFloatPoint(const HitTestRequest& request, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction) argument
104 return RenderBlock::nodeAtPoint(request, result, (int)localPoint.x(), (int)localPoint.y(), 0, 0, hitTestAction);
H A DRenderImage.cpp514 bool RenderImage::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction) argument
517 bool inside = RenderReplaced::nodeAtPoint(request, tempResult, x, y, tx, ty, hitTestAction);
H A DRenderInline.cpp496 int x, int y, int tx, int ty, HitTestAction hitTestAction)
498 return m_lineBoxes.hitTest(this, request, result, x, y, tx, ty, hitTestAction);
495 nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction) argument
H A DRenderListBox.cpp584 bool RenderListBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction) argument
586 if (!RenderBlock::nodeAtPoint(request, result, x, y, tx, ty, hitTestAction))
H A DRenderTextControlSingleLine.cpp252 bool RenderTextControlSingleLine::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int xPos, int yPos, int tx, int ty, HitTestAction hitTestAction) argument
260 if (!RenderTextControl::nodeAtPoint(request, result, xPos, yPos, tx, ty, hitTestAction))
H A DRenderBlock.cpp3285 bool RenderBlock::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, int _x, int _y, int _tx, int _ty, HitTestAction hitTestAction) argument
3298 if ((hitTestAction == HitTestBlockBackground || hitTestAction == HitTestChildBlockBackground) && isPointInOverflowControl(result, _x, _y, tx, ty)) {
3315 if (!hasColumns() && hitTestContents(request, result, _x, _y, scrolledX, scrolledY, hitTestAction))
3319 if (hasColumns() && hitTestColumns(request, result, _x, _y, scrolledX, scrolledY, hitTestAction))
3323 if (hitTestAction == HitTestFloat && m_floatingObjects) {
3345 if (hitTestAction == HitTestBlockBackground || hitTestAction == HitTestChildBlockBackground) {
3356 bool RenderBlock::hitTestColumns(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction) argument
3375 return hitTestContents(request, result, x, y, finalX, finalY, hitTestAction);
3390 hitTestContents(const HitTestRequest& request, HitTestResult& result, int x, int y, int tx, int ty, HitTestAction hitTestAction) argument
[all...]

Completed in 168 milliseconds