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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGGradientStop.h 46 virtual FloatRect objectBoundingBox() const { return FloatRect(); }
RenderSVGForeignObject.h 45 virtual FloatRect objectBoundingBox() const { return FloatRect(FloatPoint(), m_viewport.size()); }
RenderSVGInlineText.h 53 virtual FloatRect objectBoundingBox() const { return floatLinesBoundingBox(); }
RenderSVGResourceGradient.cpp 77 // Spec: When the geometry of the applicable element has no width or height and objectBoundingBox is specified,
79 FloatRect objectBoundingBox = object->objectBoundingBox();
80 if (gradientUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX && objectBoundingBox.isEmpty())
94 if (gradientUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX && !objectBoundingBox.isEmpty()) {
95 gradientData->userspaceTransform.translate(objectBoundingBox.x(), objectBoundingBox.y());
96 gradientData->userspaceTransform.scaleNonUniform(objectBoundingBox.width(), objectBoundingBox.height());
RenderSVGImage.h 56 virtual FloatRect objectBoundingBox() const { return m_objectBoundingBox; }
RenderSVGText.h 83 virtual FloatRect objectBoundingBox() const { return frameRect(); }
RenderSVGInline.cpp 54 FloatRect RenderSVGInline::objectBoundingBox() const
57 return object->objectBoundingBox();
RenderSVGResourceMasker.cpp 122 // Eventually adjust the mask image context according to the target objectBoundingBox.
125 FloatRect objectBoundingBox = object->objectBoundingBox();
126 maskContentTransformation.translate(objectBoundingBox.x(), objectBoundingBox.y());
127 maskContentTransformation.scaleNonUniform(objectBoundingBox.width(), objectBoundingBox.height());
173 FloatRect objectBoundingBox = object->objectBoundingBox();
174 FloatRect maskBoundaries = SVGLengthContext::resolveRectangle<SVGMaskElement>(maskElement, maskElement->maskUnitsCurrentValue(), objectBoundingBox);
    [all...]
RenderSVGResourcePattern.cpp 142 // Spec: When the geometry of the applicable element has no width or height and objectBoundingBox is specified,
144 FloatRect objectBoundingBox = object->objectBoundingBox();
145 if (m_attributes.patternUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX && objectBoundingBox.isEmpty())
202 const FloatRect& objectBoundingBox,
206 return SVGLengthContext::resolveRectangle(patternElement, attributes.patternUnits(), objectBoundingBox, attributes.x(), attributes.y(), attributes.width(), attributes.height());
218 FloatRect objectBoundingBox = renderer->objectBoundingBox();
219 patternBoundaries = calculatePatternBoundaries(attributes, objectBoundingBox, patternElement);
225 // Apply viewBox/objectBoundingBox transformations
    [all...]
RenderSVGResourceClipper.cpp 81 return applyClippingToContext(object, object->objectBoundingBox(), object->repaintRectInLocalCoordinates(), context);
84 bool RenderSVGResourceClipper::pathOnlyClipping(GraphicsContext* context, const AffineTransform& animatedLocalTransform, const FloatRect& objectBoundingBox)
132 transform.translate(objectBoundingBox.x(), objectBoundingBox.y());
133 transform.scaleNonUniform(objectBoundingBox.width(), objectBoundingBox.height());
147 bool RenderSVGResourceClipper::applyClippingToContext(RenderObject* object, const FloatRect& objectBoundingBox,
158 if (pathOnlyClipping(context, animatedLocalTransform, objectBoundingBox))
182 if (!clipper->applyClippingToContext(this, objectBoundingBox, repaintRect, maskContext))
185 succeeded = drawContentIntoMaskImage(clipperData, objectBoundingBox);
    [all...]
RenderSVGRoot.h 93 virtual FloatRect objectBoundingBox() const { return m_objectBoundingBox; }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObject.cpp     [all...]

Completed in 83 milliseconds