HomeSort by relevance Sort by last modified time
    Searched refs:objectBoundingBox (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceClipper.cpp 81 return applyClippingToContext(object, object->objectBoundingBox(), object->repaintRectInLocalCoordinates(), context, clipperContext);
85 const AffineTransform& animatedLocalTransform, const FloatRect& objectBoundingBox) {
132 transform.translate(objectBoundingBox.x(), objectBoundingBox.y());
133 transform.scaleNonUniform(objectBoundingBox.width(), objectBoundingBox.height());
163 // userSpaceOnUse units (the zoom is accounted for objectBoundingBox-resolved lengths).
325 bool RenderSVGResourceClipper::hitTestClipContent(const FloatRect& objectBoundingBox, const FloatPoint& nodeAtPoint)
334 transform.translate(objectBoundingBox.x(), objectBoundingBox.y())
    [all...]
RenderSVGResourceGradient.cpp 78 // Spec: When the geometry of the applicable element has no width or height and objectBoundingBox is specified,
80 FloatRect objectBoundingBox = object->objectBoundingBox();
81 if (gradientUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX && objectBoundingBox.isEmpty())
95 if (gradientUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX && !objectBoundingBox.isEmpty()) {
96 gradientData->userspaceTransform.translate(objectBoundingBox.x(), objectBoundingBox.y());
97 gradientData->userspaceTransform.scaleNonUniform(objectBoundingBox.width(), objectBoundingBox.height());
RenderSVGResourceMasker.cpp 104 drawMaskForRenderer(context, object->objectBoundingBox());
169 FloatRect objectBoundingBox = object->objectBoundingBox();
170 FloatRect maskBoundaries = SVGLengthContext::resolveRectangle<SVGMaskElement>(maskElement, maskElement->maskUnitsCurrentValue(), objectBoundingBox);
182 transform.translate(objectBoundingBox.x(), objectBoundingBox.y());
183 transform.scaleNonUniform(objectBoundingBox.width(), objectBoundingBox.height());
RenderSVGGradientStop.h 46 virtual FloatRect objectBoundingBox() const { return FloatRect(); }
RenderSVGResourcePattern.cpp 143 // Spec: When the geometry of the applicable element has no width or height and objectBoundingBox is specified,
145 FloatRect objectBoundingBox = object->objectBoundingBox();
146 if (m_attributes.patternUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX && objectBoundingBox.isEmpty())
203 const FloatRect& objectBoundingBox,
207 return SVGLengthContext::resolveRectangle(patternElement, attributes.patternUnits(), objectBoundingBox, attributes.x(), attributes.y(), attributes.width(), attributes.height());
219 FloatRect objectBoundingBox = renderer->objectBoundingBox();
220 patternBoundaries = calculatePatternBoundaries(attributes, objectBoundingBox, patternElement);
226 // Apply viewBox/objectBoundingBox transformations
    [all...]
RenderSVGInlineText.h 53 virtual FloatRect objectBoundingBox() const { return floatLinesBoundingBox(); }
SVGRenderSupport.cpp 114 static inline void updateObjectBoundingBox(FloatRect& objectBoundingBox, bool& objectBoundingBoxValid, RenderObject* other, FloatRect otherBoundingBox)
121 objectBoundingBox = otherBoundingBox;
126 objectBoundingBox.uniteEvenIfEmpty(otherBoundingBox);
129 void SVGRenderSupport::computeContainerBoundingBoxes(const RenderObject* container, FloatRect& objectBoundingBox, bool& objectBoundingBoxValid, FloatRect& strokeBoundingBox, FloatRect& repaintBoundingBox)
131 objectBoundingBox = FloatRect();
144 updateObjectBoundingBox(objectBoundingBox, objectBoundingBoxValid, current, current->objectBoundingBox());
147 updateObjectBoundingBox(objectBoundingBox, objectBoundingBoxValid, current, transform.mapRect(current->objectBoundingBox()));
343 return clipper->hitTestClipContent(object->objectBoundingBox(), point)
    [all...]
RenderSVGInline.cpp 54 FloatRect RenderSVGInline::objectBoundingBox() const
57 return object->objectBoundingBox();
RenderSVGContainer.h 62 virtual FloatRect objectBoundingBox() const OVERRIDE FINAL { return m_objectBoundingBox; }
RenderSVGForeignObject.h 45 virtual FloatRect objectBoundingBox() const { return FloatRect(FloatPoint(), m_viewport.size()); }
RenderSVGImage.h 55 virtual FloatRect objectBoundingBox() const { return m_objectBoundingBox; }
RenderSVGInline.h 43 virtual FloatRect objectBoundingBox() const OVERRIDE FINAL;
SVGRenderSupport.h 64 static void computeContainerBoundingBoxes(const RenderObject* container, FloatRect& objectBoundingBox, bool& objectBoundingBoxValid, FloatRect& strokeBoundingBox, FloatRect& repaintBoundingBox);
RenderSVGText.h 83 virtual FloatRect objectBoundingBox() const { return frameRect(); }
RenderSVGText.cpp 409 FloatRect oldBoundaries = objectBoundingBox();
417 updateCachedBoundariesInParents = oldBoundaries != objectBoundingBox();
443 if ((hitRules.canHitBoundingBox && !objectBoundingBox().isEmpty())
450 if (hitRules.canHitBoundingBox && !objectBoundingBox().contains(localPoint))
506 FloatRect strokeBoundaries = objectBoundingBox();
RenderSVGRoot.h 88 virtual FloatRect objectBoundingBox() const { return m_objectBoundingBox; }
RenderSVGShape.h 101 virtual FloatRect objectBoundingBox() const OVERRIDE FINAL { return m_fillBoundingBox; }
SVGRenderingContext.cpp 138 m_paintInfo->context->clipPath(clipPath->path(object->objectBoundingBox()), clipPath->windRule());
277 FloatRect boundingBox = m_object->objectBoundingBox();
RenderSVGContainer.cpp 192 if (objectBoundingBox().contains(localPoint)) {
RenderSVGResourceFilter.cpp 162 FloatRect targetBoundingBox = object->objectBoundingBox();
226 // Even if the target objectBoundingBox() is empty, we still have to draw the last effect result image in postApplyResource.
337 return SVGLengthContext::resolveRectangle<SVGFilterElement>(element, element->filterUnitsCurrentValue(), object->objectBoundingBox());
RenderSVGShape.cpp 341 if ((hitRules.canHitBoundingBox && objectBoundingBox().contains(localPoint))
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGGraphicsElement.cpp 109 // Note: objectBoundingBox is an emptyRect for elements like pattern or clipPath.
112 style->applyTransform(transform, renderer()->objectBoundingBox());
234 return renderer()->objectBoundingBox();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObject.h 457 // Per SVG 1.1 objectBoundingBox ignores clipping, masking, filter effects, opacity and stroke-width.
458 // This is used for all computation of objectBoundingBox relative units and by SVGLocatable::getBBox().
461 // objectBoundingBox is returned local coordinates.
462 // The name objectBoundingBox is taken from the SVG 1.1 spec.
463 virtual FloatRect objectBoundingBox() const;
    [all...]
RenderObject.cpp     [all...]

Completed in 298 milliseconds