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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPreserveAspectRatio.cpp 23 #include "core/svg/SVGPreserveAspectRatio.h"
36 SVGPreserveAspectRatio::SVGPreserveAspectRatio()
42 void SVGPreserveAspectRatio::setDefault()
48 PassRefPtr<SVGPreserveAspectRatio> SVGPreserveAspectRatio::clone() const
50 RefPtr<SVGPreserveAspectRatio> preserveAspectRatio = create();
58 PassRefPtr<SVGPropertyBase> SVGPreserveAspectRatio::cloneForAnimation(const String& value) const
60 RefPtr<SVGPreserveAspectRatio> preserveAspectRatio = create();
68 bool SVGPreserveAspectRatio::parseInternal(const CharType*& ptr, const CharType* end, bool validate
    [all...]
SVGPreserveAspectRatio.h 32 class SVGPreserveAspectRatio : public SVGPropertyBase {
56 static PassRefPtr<SVGPreserveAspectRatio> create()
58 return adoptRef(new SVGPreserveAspectRatio());
61 virtual PassRefPtr<SVGPreserveAspectRatio> clone() const;
64 bool operator==(const SVGPreserveAspectRatio&) const;
65 bool operator!=(const SVGPreserveAspectRatio& other) const { return !operator==(other); }
91 SVGPreserveAspectRatio();
101 inline PassRefPtr<SVGPreserveAspectRatio> toSVGPreserveAspectRatio(PassRefPtr<SVGPropertyBase> passBase)
104 ASSERT(base->type() == SVGPreserveAspectRatio::classType());
105 return static_pointer_cast<SVGPreserveAspectRatio>(base.release())
    [all...]

Completed in 43 milliseconds