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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
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())
93 if (gradientUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX && !objectBoundingBox.isEmpty()) {
94 gradientData->userspaceTransform.translate(objectBoundingBox.x(), objectBoundingBox.y());
95 gradientData->userspaceTransform.scaleNonUniform(objectBoundingBox.width(), objectBoundingBox.height());
RenderSVGInline.cpp 64 FloatRect RenderSVGInline::objectBoundingBox() const
67 return object->objectBoundingBox();
RenderSVGResourceMasker.cpp 101 drawMaskForRenderer(context, object->objectBoundingBox());
134 // with local clips/mask, which may yield incorrect results when mixing objectBoundingBox and
169 FloatRect objectBoundingBox = object->objectBoundingBox();
170 FloatRect maskBoundaries = SVGLengthContext::resolveRectangle<SVGMaskElement>(maskElement, maskElement->maskUnits()->currentValue()->enumValue(), objectBoundingBox);
182 transform.translate(objectBoundingBox.x(), objectBoundingBox.y());
183 transform.scaleNonUniform(objectBoundingBox.width(), objectBoundingBox.height());
RenderSVGResourcePattern.cpp 136 // Spec: When the geometry of the applicable element has no width or height and objectBoundingBox is specified,
138 FloatRect objectBoundingBox = object->objectBoundingBox();
139 if (m_attributes.patternUnits() == SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX && objectBoundingBox.isEmpty())
181 const FloatRect& objectBoundingBox,
185 return SVGLengthContext::resolveRectangle(patternElement, attributes.patternUnits(), objectBoundingBox, attributes.x(), attributes.y(), attributes.width(), attributes.height());
197 FloatRect objectBoundingBox = renderer->objectBoundingBox();
198 patternBoundaries = calculatePatternBoundaries(attributes, objectBoundingBox, patternElement);
204 // Apply viewBox/objectBoundingBox transformations
    [all...]
RenderSVGResourceClipper.cpp 83 return applyClippingToContext(object, object->objectBoundingBox(), object->paintInvalidationRectInLocalCoordinates(), context, clipperState);
87 const AffineTransform& animatedLocalTransform, const FloatRect& objectBoundingBox) {
134 transform.translate(objectBoundingBox.x(), objectBoundingBox.y());
135 transform.scaleNonUniform(objectBoundingBox.width(), objectBoundingBox.height());
164 // userSpaceOnUse units (the zoom is accounted for objectBoundingBox-resolved lengths).
259 // with local clips/mask, which may yield incorrect results when mixing objectBoundingBox and
326 bool RenderSVGResourceClipper::hitTestClipContent(const FloatRect& objectBoundingBox, const FloatPoint& nodeAtPoint)
334 transform.translate(objectBoundingBox.x(), objectBoundingBox.y())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObject.cpp     [all...]

Completed in 149 milliseconds