Home
last modified time | relevance | path

Searched refs:propertyTypes (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGAnimateElement.cpp70 Vector<AnimatedPropertyType> propertyTypes; in determineAnimatedPropertyType() local
71 targetElement->animatedPropertyTypeForAttribute(attributeName(), propertyTypes); in determineAnimatedPropertyType()
72 if (propertyTypes.isEmpty()) in determineAnimatedPropertyType()
75 ASSERT(propertyTypes.size() <= 2); in determineAnimatedPropertyType()
76 AnimatedPropertyType type = propertyTypes[0]; in determineAnimatedPropertyType()
89 ASSERT(propertyTypes.size() == 2); in determineAnimatedPropertyType()
90 ASSERT(propertyTypes[0] == AnimatedAngle); in determineAnimatedPropertyType()
91 ASSERT(propertyTypes[1] == AnimatedEnumeration); in determineAnimatedPropertyType()
92 } else if (propertyTypes.size() == 2) in determineAnimatedPropertyType()
93 ASSERT(propertyTypes[0] == propertyTypes[1]); in determineAnimatedPropertyType()
DSVGElement.cpp763 …tyTypeForAttribute(const QualifiedName& attributeName, Vector<AnimatedPropertyType>& propertyTypes) in animatedPropertyTypeForAttribute() argument
765 localAttributeToPropertyMap().animatedPropertyTypeForAttribute(attributeName, propertyTypes); in animatedPropertyTypeForAttribute()
766 if (!propertyTypes.isEmpty()) in animatedPropertyTypeForAttribute()
771 propertyTypes.append(cssPropertyTypeMap.get(attributeName)); in animatedPropertyTypeForAttribute()
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
DSVGAttributeToPropertyMap.cpp77 …tyTypeForAttribute(const QualifiedName& attributeName, Vector<AnimatedPropertyType>& propertyTypes) in animatedPropertyTypeForAttribute() argument
83 propertyTypes.reserveCapacity(propertyTypes.size() + vector->size()); in animatedPropertyTypeForAttribute()
86 propertyTypes.append((*vectorIt)->animatedPropertyType); in animatedPropertyTypeForAttribute()