Searched defs:animatedType (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimatedPreserveAspectRatio.cpp35 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createPreserveAspectRatio(new SVGPreserveAspectRatio); local
36 animatedType->preserveAspectRatio().parse(string);
37 return animatedType.release();
H A DSVGAnimatedString.cpp35 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createString(new String); local
36 animatedType->string() = string;
37 return animatedType.release();
H A DSVGAnimatedAngle.cpp36 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createAngleAndEnumeration(new pair<SVGAngle, unsigned>); local
37 pair<SVGAngle, unsigned>& animatedPair = animatedType->angleAndEnumeration();
46 return animatedType.release();
H A DSVGAnimatedEnumeration.cpp110 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createEnumeration(new unsigned); local
111 animatedType->enumeration() = enumerationValueForTargetAttribute(m_animationElement->targetElement(), m_animationElement->attributeName(), string);
112 return animatedType.release();
H A DSVGAnimatedRect.cpp36 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createRect(new SVGRect); local
37 parseRect(string, animatedType->rect());
38 return animatedType.release();
H A DSVGAnimatedTransformList.cpp45 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createTransformList(new SVGTransformList); local
46 animatedType->transformList().parse(m_transformTypeString + string + ')');
47 ASSERT(animatedType->transformList().size() <= 1);
48 return animatedType.release();
H A DSVGAnimatedType.cpp97 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedAngle)); local
98 animatedType->m_data.angleAndEnumeration = angleAndEnumeration;
99 return animatedType.release();
105 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedBoolean)); local
106 animatedType->m_data.boolean = boolean;
107 return animatedType.release();
113 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedColor)); local
114 animatedType->m_data.color = color;
115 return animatedType.release();
121 OwnPtr<SVGAnimatedType> animatedType local
129 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedInteger)); local
137 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedIntegerOptionalInteger)); local
145 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedLength)); local
153 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedLengthList)); local
161 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedNumber)); local
169 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedNumberList)); local
177 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedNumberOptionalNumber)); local
185 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedPath)); local
193 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedPoints)); local
201 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedPreserveAspectRatio)); local
209 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedRect)); local
217 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedString)); local
225 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedTransformList)); local
[all...]
H A DSVGAnimatedTypeAnimator.h75 const typename AnimValType::ContentType& animatedType = castAnimatedPropertyToActualType<AnimValType>(animatedTypes[0].properties[0].get())->currentBaseValue(); local
77 typename AnimValType::ContentType* copy = new typename AnimValType::ContentType(animatedType);
H A DSVGAnimationElement.h99 AnimatedPropertyValueType valueType, AnimatedType& animatedType, SVGElement* contextElement)
107 animatedType = (*parseTypeFromString)(this, typeString);
138 void animateDiscreteType(float percentage, const AnimatedType& fromType, const AnimatedType& toType, AnimatedType& animatedType) argument
141 animatedType = AnimatedType(toType);
144 animatedType = AnimatedType(fromType);
98 adjustForInheritance(AnimatedType (parseTypeFromString)SVGAnimationElement*, const String&), AnimatedPropertyValueType valueType, AnimatedType& animatedType, SVGElement* contextElement) argument

Completed in 134 milliseconds