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

  /external/webkit/Source/WebCore/svg/
SVGLocatable.h 44 virtual FloatRect getBBox(StyleUpdateStrategy) const = 0;
60 static FloatRect getBBox(const SVGElement*, StyleUpdateStrategy);
SVGLocatable.idl 33 SVGRect getBBox();
SVGStyledLocatableElement.cpp 47 FloatRect SVGStyledLocatableElement::getBBox(StyleUpdateStrategy styleUpdateStrategy) const
49 return SVGLocatable::getBBox(this, styleUpdateStrategy);
SVGStyledLocatableElement.h 38 virtual FloatRect getBBox(StyleUpdateStrategy = AllowStyleUpdate) const;
SVGStyledTransformableElement.h 48 virtual FloatRect getBBox(StyleUpdateStrategy = AllowStyleUpdate) const;
SVGTextElement.h 39 virtual FloatRect getBBox(StyleUpdateStrategy = AllowStyleUpdate) const;
SVGStyledTransformableElement.cpp 122 FloatRect SVGStyledTransformableElement::getBBox(StyleUpdateStrategy styleUpdateStrategy) const
124 return SVGTransformable::getBBox(this, styleUpdateStrategy);
SVGTextElement.cpp 73 FloatRect SVGTextElement::getBBox(StyleUpdateStrategy styleUpdateStrategy) const
75 return SVGTransformable::getBBox(this, styleUpdateStrategy);
SVGLocatable.cpp 67 FloatRect SVGLocatable::getBBox(const SVGElement* element, StyleUpdateStrategy styleUpdateStrategy)
73 // FIXME: Eventually we should support getBBox for detached elements.
SVGElement.cpp 195 rect = static_cast<const SVGStyledLocatableElement*>(this)->getBBox(styleUpdateStrategy);
199 rect = static_cast<const SVGTextElement*>(this)->getBBox(styleUpdateStrategy);
SVGSVGElement.cpp 429 return rect.intersects(getBBox());
437 return rect.contains(getBBox());

Completed in 387 milliseconds