Home | History | Annotate | Download | only in properties

Lines Matching refs:PropertyType

30 template<typename PropertyType>
33 typedef SVGPropertyTearOff<PropertyType> Self;
37 static PassRefPtr<Self> create(SVGAnimatedProperty* animatedProperty, SVGPropertyRole role, PropertyType& value)
44 static PassRefPtr<Self> create(const PropertyType& initialValue)
49 PropertyType& propertyReference() { return *m_value; }
53 void setValue(PropertyType& value)
82 m_value = new PropertyType(*m_value);
97 SVGPropertyTearOff(SVGAnimatedProperty* animatedProperty, SVGPropertyRole role, PropertyType& value)
107 SVGPropertyTearOff(const PropertyType& initialValue)
110 , m_value(new PropertyType(initialValue))
123 PropertyType* m_value;