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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedType.cpp 97 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedAngle));
98 animatedType->m_data.angleAndEnumeration = angleAndEnumeration;
99 return animatedType.release();
105 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedBoolean));
106 animatedType->m_data.boolean = boolean;
107 return animatedType.release();
113 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedColor));
114 animatedType->m_data.color = color;
115 return animatedType.release();
121 OwnPtr<SVGAnimatedType> animatedType = adoptPtr(new SVGAnimatedType(AnimatedEnumeration))
    [all...]
SVGAnimatedPreserveAspectRatio.cpp 35 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createPreserveAspectRatio(new SVGPreserveAspectRatio);
36 animatedType->preserveAspectRatio().parse(string);
37 return animatedType.release();
SVGAnimatedString.cpp 35 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createString(new String);
36 animatedType->string() = string;
37 return animatedType.release();
SVGAnimatedRect.cpp 36 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createRect(new SVGRect);
37 parseRect(string, animatedType->rect());
38 return animatedType.release();
SVGAnimatedTransformList.cpp 45 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createTransformList(new SVGTransformList);
46 animatedType->transformList().parse(m_transformTypeString + string + ')');
47 ASSERT(animatedType->transformList().size() <= 1);
48 return animatedType.release();
SVGAnimationElement.h 97 template<typename AnimatedType>
98 void adjustForInheritance(AnimatedType (*parseTypeFromString)(SVGAnimationElement*, const String&),
99 AnimatedPropertyValueType valueType, AnimatedType& animatedType, SVGElement* contextElement)
107 animatedType = (*parseTypeFromString)(this, typeString);
110 template<typename AnimatedType>
111 bool adjustFromToListValues(const AnimatedType& fromList, const AnimatedType& toList, AnimatedType& animatedList, float percentage, bool resizeAnimatedListIfNeeded = true)
123 animatedList = AnimatedType(fromList)
    [all...]
SVGAnimatedAngle.cpp 43 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createAngleAndEnumeration(new pair<SVGAngle, unsigned>);
44 pair<SVGAngle, unsigned>& animatedPair = animatedType->angleAndEnumeration();
53 return animatedType.release();
SVGAnimatedEnumeration.cpp 110 OwnPtr<SVGAnimatedType> animatedType = SVGAnimatedType::createEnumeration(new unsigned);
111 animatedType->enumeration() = enumerationValueForTargetAttribute(m_animationElement->targetElement(), m_animationElement->attributeName(), string);
112 return animatedType.release();
SVGAnimatedTypeAnimator.h 75 const typename AnimValType::ContentType& animatedType = castAnimatedPropertyToActualType<AnimValType>(animatedTypes[0].properties[0].get())->currentBaseValue();
77 typename AnimValType::ContentType* copy = new typename AnimValType::ContentType(animatedType);

Completed in 138 milliseconds