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()
41 void SVGPreserveAspectRatio::setDefault()
47 PassRefPtr<SVGPreserveAspectRatio> SVGPreserveAspectRatio::clone() const
49 RefPtr<SVGPreserveAspectRatio> preserveAspectRatio = create();
58 bool SVGPreserveAspectRatio::parseInternal(const CharType*& ptr, const CharType* end, bool validate)
166 void SVGPreserveAspectRatio::setValueAsString(const String& string, ExceptionState& exceptionState)
189 bool SVGPreserveAspectRatio::parse(const LChar*& ptr, const LChar* end, bool validate
    [all...]
SVGPreserveAspectRatio.h 32 class SVGPreserveAspectRatio : public SVGPropertyHelper<SVGPreserveAspectRatio> {
56 static PassRefPtr<SVGPreserveAspectRatio> create()
58 return adoptRef(new SVGPreserveAspectRatio());
61 virtual PassRefPtr<SVGPreserveAspectRatio> clone() const;
63 bool operator==(const SVGPreserveAspectRatio&) const;
64 bool operator!=(const SVGPreserveAspectRatio& other) const { return !operator==(other); }
90 SVGPreserveAspectRatio();
100 inline PassRefPtr<SVGPreserveAspectRatio> toSVGPreserveAspectRatio(PassRefPtr<SVGPropertyBase> passBase)
103 ASSERT(base->type() == SVGPreserveAspectRatio::classType())
    [all...]

Completed in 56 milliseconds