OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:animatedType
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
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();
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();
SVGAnimatedAngle.cpp
36
OwnPtr<SVGAnimatedType>
animatedType
= SVGAnimatedType::createAngleAndEnumeration(new pair<SVGAngle, unsigned>);
37
pair<SVGAngle, unsigned>& animatedPair =
animatedType
->angleAndEnumeration();
46
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();
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
...]
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 247 milliseconds