HomeSort by relevance Sort by last modified time
    Searched refs:animatedPropertyType (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedEnumerationPropertyTearOff.h 42 static PassRefPtr<SVGAnimatedEnumerationPropertyTearOff<EnumType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, EnumType& property)
45 return adoptRef(new SVGAnimatedEnumerationPropertyTearOff<EnumType>(contextElement, attributeName, animatedPropertyType, reinterpret_cast<unsigned&>(property)));
56 SVGAnimatedEnumerationPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, unsigned& property)
57 : SVGAnimatedStaticPropertyTearOff<unsigned>(contextElement, attributeName, animatedPropertyType, property)
SVGAnimatedTransformListPropertyTearOff.h 45 static PassRefPtr<SVGAnimatedTransformListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGTransformList& values)
48 return adoptRef(new SVGAnimatedTransformListPropertyTearOff(contextElement, attributeName, animatedPropertyType, values));
52 SVGAnimatedTransformListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGTransformList& values)
53 : SVGAnimatedListPropertyTearOff<SVGTransformList>(contextElement, attributeName, animatedPropertyType, values)
SVGAnimatedStaticPropertyTearOff.h 52 static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
55 return adoptRef(new SVGAnimatedStaticPropertyTearOff<PropertyType>(contextElement, attributeName, animatedPropertyType, property));
102 SVGAnimatedStaticPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
103 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType)
SVGAnimatedProperty.cpp 28 SVGAnimatedProperty::SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType)
31 , m_animatedPropertyType(animatedPropertyType)
SVGPropertyInfo.h 36 enum AnimatedPropertyType {
63 SVGPropertyInfo(AnimatedPropertyType newType, AnimatedPropertyState newState, const QualifiedName& newAttributeName,
66 : animatedPropertyType(newType)
75 AnimatedPropertyType animatedPropertyType;
SVGAnimatedPathSegListPropertyTearOff.h 62 static PassRefPtr<SVGAnimatedPathSegListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGPathSegList& values)
65 return adoptRef(new SVGAnimatedPathSegListPropertyTearOff(contextElement, attributeName, animatedPropertyType, values));
107 SVGAnimatedPathSegListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGPathSegList& values)
108 : SVGAnimatedListPropertyTearOff<SVGPathSegList>(contextElement, attributeName, animatedPropertyType, values)
SVGAnimatedPropertyTearOff.h 61 static PassRefPtr<SVGAnimatedPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
64 return adoptRef(new SVGAnimatedPropertyTearOff<PropertyType>(contextElement, attributeName, animatedPropertyType, property));
110 SVGAnimatedPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
111 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType)
SVGAnimatedListPropertyTearOff.h 156 static PassRefPtr<SVGAnimatedListPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& values)
159 return adoptRef(new SVGAnimatedListPropertyTearOff<PropertyType>(contextElement, attributeName, animatedPropertyType, values));
163 SVGAnimatedListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& values)
164 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType)
SVGAnimatedProperty.h 36 AnimatedPropertyType animatedPropertyType() const { return m_animatedPropertyType; }
57 wrapper = TearOffType::create(element, info->attributeName, info->animatedPropertyType, property);
80 SVGAnimatedProperty(SVGElement*, const QualifiedName&, AnimatedPropertyType);
87 AnimatedPropertyType m_animatedPropertyType;
SVGAttributeToPropertyMap.cpp 77 void SVGAttributeToPropertyMap::animatedPropertyTypeForAttribute(const QualifiedName& attributeName, Vector<AnimatedPropertyType>& propertyTypes)
86 propertyTypes.append((*vectorIt)->animatedPropertyType);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedTypeAnimator.cpp 38 SVGAnimatedTypeAnimator::SVGAnimatedTypeAnimator(AnimatedPropertyType type, SVGAnimationElement* animationElement, SVGElement* contextElement)
97 if (property->animatedPropertyType() != m_type) {
99 ASSERT(property->animatedPropertyType() == AnimatedEnumeration);
SVGAnimatedTypeAnimator.h 63 AnimatedPropertyType type() const { return m_type; }
68 SVGAnimatedTypeAnimator(AnimatedPropertyType, SVGAnimationElement*, SVGElement*);
173 // We can't assert property->animatedPropertyType() == m_type, as there's an exception for SVGMarkerElements orient attribute.
174 if (property->animatedPropertyType() != m_type) {
176 ASSERT(property->animatedPropertyType() == AnimatedEnumeration);
181 AnimatedPropertyType m_type;
SVGAnimateElement.cpp 64 AnimatedPropertyType SVGAnimateElement::determineAnimatedPropertyType(SVGElement* targetElement) const
68 Vector<AnimatedPropertyType> propertyTypes;
74 AnimatedPropertyType type = propertyTypes[0];
182 static inline bool propertyTypesAreConsistent(AnimatedPropertyType expectedPropertyType, const SVGElementAnimatedPropertyList& animatedTypes)
187 if (expectedPropertyType != it->properties[i]->animatedPropertyType()) {
189 if (expectedPropertyType == AnimatedAngle && it->properties[i]->animatedPropertyType() == AnimatedEnumeration)

Completed in 305 milliseconds