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

1 2

  /external/webkit/WebCore/rendering/
RenderSVGTSpan.h 38 virtual FloatRect objectBoundingBox() const { return FloatRect(); }
RenderSVGGradientStop.h 47 virtual FloatRect objectBoundingBox() const { return FloatRect(); }
RenderSVGInline.h 44 virtual FloatRect objectBoundingBox() const { return FloatRect(); }
RenderSVGHiddenContainer.h 54 virtual FloatRect objectBoundingBox() const;
RenderSVGHiddenContainer.cpp 70 FloatRect RenderSVGHiddenContainer::objectBoundingBox() const
RenderForeignObject.h 48 virtual FloatRect objectBoundingBox() const;
RenderSVGText.h 64 virtual FloatRect objectBoundingBox() const;
RenderPath.h 50 virtual FloatRect objectBoundingBox() const;
RenderSVGContainer.h 58 virtual FloatRect objectBoundingBox() const;
RenderSVGImage.h 48 virtual FloatRect objectBoundingBox() const;
RenderSVGRoot.h 62 virtual FloatRect objectBoundingBox() const;
SVGRenderSupport.cpp 142 clipper->applyClip(paintInfo.context, object->objectBoundingBox());
232 FloatRect childBBox = includeAllPaintedContent ? current->repaintRectInLocalCoordinates() : current->objectBoundingBox();
282 return filter->filterBoundingBox(object->objectBoundingBox());
293 return clipper->clipperBoundingBox(object->objectBoundingBox());
302 return masker->maskerBoundingBox(object->objectBoundingBox());
SVGRootInlineBox.h 68 virtual FloatRect objectBoundingBox() const { return FloatRect(); }
RenderForeignObject.cpp 70 FloatRect RenderForeignObject::objectBoundingBox() const
RenderSVGText.cpp 123 // Don't use objectBoundingBox here, as it's unites the selection rects. Makes it hard
144 // Don't use objectBoundingBox here, as it's unites the selection rects. Makes it hard
168 FloatRect RenderSVGText::objectBoundingBox() const
186 FloatRect repaintRect = objectBoundingBox();
RenderSVGContainer.cpp 134 FloatRect RenderSVGContainer::objectBoundingBox() const
RenderSVGImage.cpp 135 FloatRect RenderSVGImage::objectBoundingBox() const
  /external/webkit/WebCore/svg/graphics/
SVGResourceMasker.cpp 65 FloatRect SVGResourceMasker::maskerBoundingBox(const FloatRect& objectBoundingBox) const
67 return m_ownerElement->maskBoundingBox(objectBoundingBox);
SVGResourceClipper.cpp 63 FloatRect SVGResourceClipper::clipperBoundingBox(const FloatRect& objectBoundingBox)
77 clipPathRect.scale(objectBoundingBox.width(), objectBoundingBox.height());
78 clipPathRect.move(objectBoundingBox.x(), objectBoundingBox.y());
SVGPaintServerGradient.cpp 183 FloatRect maskBoundingBox = textRootBlock->objectBoundingBox();
235 FloatRect bbox = object->objectBoundingBox();
SVGPaintServerPattern.cpp 100 FloatRect targetRect = object->objectBoundingBox();
  /external/webkit/WebCore/svg/
SVGMaskElement.cpp 76 else if (attr->value() == "objectBoundingBox")
81 else if (attr->value() == "objectBoundingBox")
153 FloatRect SVGMaskElement::maskBoundingBox(const FloatRect& objectBoundingBox) const
157 maskBBox = FloatRect(x().valueAsPercentage() * objectBoundingBox.width() + objectBoundingBox.x(),
158 y().valueAsPercentage() * objectBoundingBox.height() + objectBoundingBox.y(),
159 width().valueAsPercentage() * objectBoundingBox.width(),
160 height().valueAsPercentage() * objectBoundingBox.height());
172 FloatRect objectBoundingBox = object->objectBoundingBox()
    [all...]
SVGFilterElement.cpp 75 else if (value == "objectBoundingBox")
80 else if (value == "objectBoundingBox")
147 FloatRect SVGFilterElement::filterBoundingBox(const FloatRect& objectBoundingBox) const
151 filterBBox = FloatRect(x().valueAsPercentage() * objectBoundingBox.width() + objectBoundingBox.x(),
152 y().valueAsPercentage() * objectBoundingBox.height() + objectBoundingBox.y(),
153 width().valueAsPercentage() * objectBoundingBox.width(),
154 height().valueAsPercentage() * objectBoundingBox.height());
SVGFEImageElement.cpp 125 IntRect targetRect = enclosingIntRect(renderer->objectBoundingBox());
SVGLocatable.cpp 82 return element->renderer()->objectBoundingBox();

Completed in 1156 milliseconds

1 2