Searched refs:SVGEnumerationBase (Results 1 – 3 of 3) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGEnumeration.cpp | 42 inline PassRefPtr<SVGEnumerationBase> toSVGEnumerationBase(PassRefPtr<SVGPropertyBase> passBase) in toSVGEnumerationBase() 45 ASSERT(base->type() == SVGEnumerationBase::classType()); in toSVGEnumerationBase() 46 return static_pointer_cast<SVGEnumerationBase>(base.release()); in toSVGEnumerationBase() 49 SVGEnumerationBase::~SVGEnumerationBase() in ~SVGEnumerationBase() 53 PassRefPtr<SVGPropertyBase> SVGEnumerationBase::cloneForAnimation(const String& value) const in cloneForAnimation() 55 RefPtr<SVGEnumerationBase> svgEnumeration = clone(); in cloneForAnimation() 60 String SVGEnumerationBase::valueAsString() const in valueAsString() 73 void SVGEnumerationBase::setValue(unsigned short value, ExceptionState& exceptionState) in setValue() 89 void SVGEnumerationBase::setValueAsString(const String& string, ExceptionState& exceptionState) in setValueAsString() 107 void SVGEnumerationBase::add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) in add() [all …]
|
D | SVGEnumeration.h | 40 class SVGEnumerationBase : public SVGPropertyBase { 49 virtual ~SVGEnumerationBase(); 55 virtual PassRefPtr<SVGEnumerationBase> clone() const = 0; 73 … SVGEnumerationBase(unsigned short value, const StringEntries& entries, unsigned short maxExposed) in SVGEnumerationBase() function 95 typedef SVGEnumerationBase::StringEntries SVGEnumerationStringEntries; 100 return SVGEnumerationBase::valueOfLastEnum(getStaticStringEntries<Enum>()); in getMaxExposedEnumValue() 104 class SVGEnumeration : public SVGEnumerationBase { 115 virtual PassRefPtr<SVGEnumerationBase> clone() const OVERRIDE in clone() 134 … : SVGEnumerationBase(newValue, getStaticStringEntries<Enum>(), getMaxExposedEnumValue<Enum>()) in SVGEnumeration()
|
D | SVGAnimatedEnumerationBase.h | 39 class SVGAnimatedEnumerationBase : public SVGAnimatedProperty<SVGEnumerationBase> { 46 …nt* contextElement, const QualifiedName& attributeName, PassRefPtr<SVGEnumerationBase> initialValu… in SVGAnimatedEnumerationBase() 47 : SVGAnimatedProperty<SVGEnumerationBase>(contextElement, attributeName, initialValue) in SVGAnimatedEnumerationBase()
|