HomeSort by relevance Sort by last modified time
    Searched full:svgpreserveaspectratio (Results 1 - 25 of 49) sorted by null

1 2

  /external/webkit/WebCore/svg/
SVGPreserveAspectRatio.cpp 25 #include "SVGPreserveAspectRatio.h"
33 SVGPreserveAspectRatio::SVGPreserveAspectRatio()
40 SVGPreserveAspectRatio::~SVGPreserveAspectRatio()
44 void SVGPreserveAspectRatio::setAlign(unsigned short align)
49 unsigned short SVGPreserveAspectRatio::align() const
54 void SVGPreserveAspectRatio::setMeetOrSlice(unsigned short meetOrSlice)
59 unsigned short SVGPreserveAspectRatio::meetOrSlice() const
64 SVGPreserveAspectRatio SVGPreserveAspectRatio::parsePreserveAspectRatio(const UChar*& currParam, const UChar* end, bool v (…)
    [all...]
SVGFitToViewBox.h 26 #include "SVGPreserveAspectRatio.h"
38 static AffineTransform viewBoxToViewTransform(const FloatRect& viewBoxRect, const SVGPreserveAspectRatio&, float viewWidth, float viewHeight);
44 virtual void setPreserveAspectRatioBaseValue(SVGAnimatedPropertyTraits<SVGPreserveAspectRatio>::PassType) = 0;
SVGPreserveAspectRatio.h 34 class SVGPreserveAspectRatio {
56 SVGPreserveAspectRatio();
57 virtual ~SVGPreserveAspectRatio();
83 static SVGPreserveAspectRatio parsePreserveAspectRatio(const UChar*& currParam, const UChar* end, bool validate, bool& result);
SVGAnimatedPreserveAspectRatio.idl 29 readonly attribute SVGPreserveAspectRatio baseVal;
30 readonly attribute SVGPreserveAspectRatio animVal;
SVGFEImageElement.h 31 #include "SVGPreserveAspectRatio.h"
55 DECLARE_ANIMATED_PROPERTY(SVGFEImageElement, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio, PreserveAspectRatio, preserveAspectRatio)
SVGPreserveAspectRatio.idl 28 interface [Conditional=SVG, PODType=SVGPreserveAspectRatio] SVGPreserveAspectRatio {
SVGAnimatedPropertyTraits.h 31 #include "SVGPreserveAspectRatio.h"
137 struct SVGAnimatedPropertyTraits<SVGPreserveAspectRatio> : public Noncopyable {
138 typedef const SVGPreserveAspectRatio& PassType;
139 typedef SVGPreserveAspectRatio ReturnType;
140 typedef SVGPreserveAspectRatio StoredType;
142 static ReturnType null() { return SVGPreserveAspectRatio(); }
SVGFitToViewBox.cpp 33 #include "SVGPreserveAspectRatio.h"
78 AffineTransform SVGFitToViewBox::viewBoxToViewTransform(const FloatRect& viewBoxRect, const SVGPreserveAspectRatio& preserveAspectRatio, float viewWidth, float viewHeight)
96 SVGPreserveAspectRatio::parsePreserveAspectRatio(this, attr->value());
SVGImageElement.h 31 #include "SVGPreserveAspectRatio.h"
69 DECLARE_ANIMATED_PROPERTY(SVGImageElement, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio, PreserveAspectRatio, preserveAspectRatio)
SVGSymbolElement.h 50 DECLARE_ANIMATED_PROPERTY(SVGSymbolElement, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio, PreserveAspectRatio, preserveAspectRatio)
SVGAnimatedTemplate.h 34 class SVGPreserveAspectRatio;
167 typedef SVGAnimatedTemplate<SVGPreserveAspectRatio> SVGAnimatedPreserveAspectRatio;
SVGFEImageElement.cpp 34 #include "SVGPreserveAspectRatio.h"
75 SVGPreserveAspectRatio::parsePreserveAspectRatio(this, value);
SVGViewElement.h 54 DECLARE_ANIMATED_PROPERTY(SVGViewElement, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio, PreserveAspectRatio, preserveAspectRatio)
SVGViewSpec.h 62 DECLARE_ANIMATED_PROPERTY(SVGViewSpec, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio, PreserveAspectRatio, preserveAspectRatio)
SVGViewSpec.cpp 27 #include "SVGPreserveAspectRatio.h"
63 SVGPreserveAspectRatio::parsePreserveAspectRatio(this, preserve);
141 setPreserveAspectRatioBaseValue(SVGPreserveAspectRatio::parsePreserveAspectRatio(currViewSpec, end, false, result));
SVGMarkerElement.h 87 DECLARE_ANIMATED_PROPERTY(SVGMarkerElement, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio, PreserveAspectRatio, preserveAspectRatio)
SVGPatternElement.h 78 DECLARE_ANIMATED_PROPERTY(SVGPatternElement, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio, PreserveAspectRatio, preserveAspectRatio)
SVGImageElement.cpp 32 #include "SVGPreserveAspectRatio.h"
63 SVGPreserveAspectRatio::parsePreserveAspectRatio(this, attr->value());
SVGSVGElement.h 148 DECLARE_ANIMATED_PROPERTY(SVGSVGElement, SVGNames::preserveAspectRatioAttr, SVGPreserveAspectRatio, PreserveAspectRatio, preserveAspectRatio)
SVGAllInOne.cpp 126 #include "SVGPreserveAspectRatio.cpp"
  /external/webkit/WebCore/svg/graphics/filters/
SVGFEImage.h 30 #include "SVGPreserveAspectRatio.h"
36 static PassRefPtr<FEImage> create(RefPtr<Image>, SVGPreserveAspectRatio);
43 FEImage(RefPtr<Image>, SVGPreserveAspectRatio);
46 SVGPreserveAspectRatio m_preserveAspectRatio;
SVGFEImage.cpp 31 #include "SVGPreserveAspectRatio.h"
36 FEImage::FEImage(RefPtr<Image> image, SVGPreserveAspectRatio preserveAspectRatio)
43 PassRefPtr<FEImage> FEImage::create(RefPtr<Image> image, SVGPreserveAspectRatio preserveAspectRatio)
  /external/webkit/WebCore/rendering/
RenderSVGImage.h 30 #include "SVGPreserveAspectRatio.h"
RenderSVGImage.cpp 38 #include "SVGPreserveAspectRatio.h"
92 if (imageElt->preserveAspectRatio().align() != SVGPreserveAspectRatio::SVG_PRESERVEASPECTRATIO_NONE)
  /external/webkit/WebCore/bindings/v8/
V8Index.h     [all...]

Completed in 1230 milliseconds

1 2