Searched refs:pointInParent (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGHiddenContainer.h48 virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const FloatPoint& pointInParent, HitTestAction) OVERRIDE FINAL;
H A DRenderSVGViewportContainer.h56 virtual bool pointIsInsideViewportClip(const FloatPoint& pointInParent) OVERRIDE;
H A DRenderSVGViewportContainer.cpp97 bool RenderSVGViewportContainer::pointIsInsideViewportClip(const FloatPoint& pointInParent) argument
103 return m_viewport.contains(pointInParent);
H A DRenderSVGContainer.cpp170 bool RenderSVGContainer::nodeAtFloatPoint(const HitTestRequest& request, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction) argument
173 if (!pointIsInsideViewportClip(pointInParent))
177 if (!SVGRenderSupport::transformToUserSpaceAndCheckClipping(this, localToParentTransform(), pointInParent, localPoint))
H A DRenderSVGForeignObject.cpp129 bool RenderSVGForeignObject::nodeAtFloatPoint(const HitTestRequest& request, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction) argument
139 FloatPoint localPoint = localTransform.inverse().mapPoint(pointInParent);
H A DRenderSVGForeignObject.h48 virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const FloatPoint& pointInParent, HitTestAction) OVERRIDE;
H A DRenderSVGImage.h68 virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const FloatPoint& pointInParent, HitTestAction) OVERRIDE;
H A DRenderSVGImage.cpp157 bool RenderSVGImage::nodeAtFloatPoint(const HitTestRequest& request, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction) argument
167 if (!SVGRenderSupport::transformToUserSpaceAndCheckClipping(this, localToParentTransform(), pointInParent, localPoint))
H A DRenderSVGContainer.h70 virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const FloatPoint& pointInParent, HitTestAction) OVERRIDE;
78 virtual bool pointIsInsideViewportClip(const FloatPoint& /*pointInParent*/) { return true; }
H A DRenderSVGText.h66 virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const FloatPoint& pointInParent, HitTestAction) OVERRIDE;
H A DSVGRenderSupport.h65 // Transform |pointInParent| to |object|'s user-space and check if it is
68 static bool transformToUserSpaceAndCheckClipping(RenderObject*, const AffineTransform& localTransform, const FloatPoint& pointInParent, FloatPoint& localPoint);
H A DRenderSVGRoot.cpp417 LayoutPoint pointInParent = locationInContainer.point() - toLayoutSize(accumulatedOffset); local
418 LayoutPoint pointInBorderBox = pointInParent - toLayoutSize(location());
426 FloatPoint localPoint = localToParentTransform.inverse().mapPoint(FloatPoint(pointInParent));
H A DRenderSVGShape.h96 virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const FloatPoint& pointInParent, HitTestAction) OVERRIDE FINAL;
H A DRenderSVGShape.cpp304 bool RenderSVGShape::nodeAtFloatPoint(const HitTestRequest& request, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction) argument
311 if (!SVGRenderSupport::transformToUserSpaceAndCheckClipping(this, m_localTransform, pointInParent, localPoint))
H A DRenderSVGText.cpp425 bool RenderSVGText::nodeAtFloatPoint(const HitTestRequest& request, HitTestResult& result, const FloatPoint& pointInParent, HitTestAction hitTestAction) argument
434 if (!SVGRenderSupport::transformToUserSpaceAndCheckClipping(this, localToParentTransform(), pointInParent, localPoint))
H A DSVGRenderSupport.cpp303 bool SVGRenderSupport::transformToUserSpaceAndCheckClipping(RenderObject* object, const AffineTransform& localTransform, const FloatPoint& pointInParent, FloatPoint& localPoint) argument
307 localPoint = localTransform.inverse().mapPoint(pointInParent);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTextControlSingleLine.cpp207 LayoutPoint pointInParent = locationInContainer.point(); local
210 pointInParent -= toLayoutSize(editingViewPortElement()->renderBox()->location());
212 pointInParent -= toLayoutSize(container->renderBox()->location());
214 hitInnerEditorElement(result, pointInParent, accumulatedOffset);
H A DRenderObject.h509 virtual bool nodeAtFloatPoint(const HitTestRequest&, HitTestResult&, const FloatPoint& pointInParent, HitTestAction);

Completed in 105 milliseconds