Searched refs:animatedType (Results 1 – 9 of 9) sorted by relevance
97 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedAngle)); in createAngleAndEnumeration() local98 animatedType->m_data.angleAndEnumeration = angleAndEnumeration; in createAngleAndEnumeration()99 return animatedType.release(); in createAngleAndEnumeration()105 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedBoolean)); in createBoolean() local106 animatedType->m_data.boolean = boolean; in createBoolean()107 return animatedType.release(); in createBoolean()113 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedColor)); in createColor() local114 animatedType->m_data.color = color; in createColor()115 return animatedType.release(); in createColor()121 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedEnumeration)); in createEnumeration() local[all …]
35 …OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createPreserveAspectRatio(new SVGPreserveA… in constructFromString() local36 animatedType->preserveAspectRatio().parse(string); in constructFromString()37 return animatedType.release(); in constructFromString()
35 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createString(new String); in constructFromString() local36 animatedType->string() = string; in constructFromString()37 return animatedType.release(); in constructFromString()
99 … AnimatedPropertyValueType valueType, AnimatedType& animatedType, SVGElement* contextElement) in adjustForInheritance() argument107 animatedType = (*parseTypeFromString)(this, typeString); in adjustForInheritance()138 …t percentage, const AnimatedType& fromType, const AnimatedType& toType, AnimatedType& animatedType) in animateDiscreteType() argument141 animatedType = AnimatedType(toType); in animateDiscreteType()144 animatedType = AnimatedType(fromType); in animateDiscreteType()
45 … OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createTransformList(new SVGTransformList); in constructFromString() local46 animatedType->transformList().parse(m_transformTypeString + string + ')'); in constructFromString()47 ASSERT(animatedType->transformList().size() <= 1); in constructFromString()48 return animatedType.release(); in constructFromString()
36 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createRect(new SVGRect); in constructFromString() local37 parseRect(string, animatedType->rect()); in constructFromString()38 return animatedType.release(); in constructFromString()
110 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createEnumeration(new unsigned); in constructFromString() local111 …animatedType->enumeration() = enumerationValueForTargetAttribute(m_animationElement->targetElement… in constructFromString()112 return animatedType.release(); in constructFromString()
36 …OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createAngleAndEnumeration(new pair<SVGAngl… in constructFromString() local37 pair<SVGAngle, unsigned>& animatedPair = animatedType->angleAndEnumeration(); in constructFromString()46 return animatedType.release(); in constructFromString()
75 …const typename AnimValType::ContentType& animatedType = castAnimatedPropertyToActualType<AnimValTy… in constructFromBaseValue() local77 … typename AnimValType::ContentType* copy = new typename AnimValType::ContentType(animatedType); in constructFromBaseValue()