OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ToAnimation
(Results
1 - 19
of
19
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGSetElement.cpp
30
setAnimationMode(
ToAnimation
);
42
// No-op, as <set> has a constant animation mode of
ToAnimation
.
SVGAnimatedBoolean.cpp
75
bool fromBoolean = m_animationElement->animationMode() ==
ToAnimation
? animated->boolean() : from->boolean();
SVGAnimatedPreserveAspectRatio.cpp
75
const SVGPreserveAspectRatio& fromPreserveAspectRatio = m_animationElement->animationMode() ==
ToAnimation
? animated->preserveAspectRatio() : from->preserveAspectRatio();
SVGAnimationElement.h
40
ToAnimation
,
122
if (animationMode() !=
ToAnimation
)
140
if ((animationMode() == FromToAnimation && percentage > 0.5) || animationMode() ==
ToAnimation
|| percentage == 1) {
158
if (isAdditive() && animationMode() !=
ToAnimation
)
SVGAnimatedInteger.cpp
86
int fromInteger = m_animationElement->animationMode() ==
ToAnimation
? animated->integer() : from->integer();
SVGAnimatedIntegerOptionalInteger.cpp
93
const pair<int, int>& fromIntegerPair = m_animationElement->animationMode() ==
ToAnimation
? animated->integerOptionalInteger() : from->integerOptionalInteger();
SVGAnimatedNumber.cpp
90
float fromNumber = m_animationElement->animationMode() ==
ToAnimation
? animated->number() : from->number();
SVGAnimatedNumberList.cpp
86
const SVGNumberList& fromNumberList = m_animationElement->animationMode() ==
ToAnimation
? animated->numberList() : from->numberList();
SVGAnimatedNumberOptionalNumber.cpp
90
const pair<float, float>& fromNumberPair = m_animationElement->animationMode() ==
ToAnimation
? animated->numberOptionalNumber() : from->numberOptionalNumber();
SVGAnimatedPointList.cpp
87
const SVGPointList& fromPointList = m_animationElement->animationMode() ==
ToAnimation
? animated->pointList() : from->pointList();
SVGAnimatedRect.cpp
79
const SVGRect& fromRect = m_animationElement->animationMode() ==
ToAnimation
? animated->rect() : from->rect();
SVGAnimatedAngle.cpp
101
const pair<SVGAngle, unsigned>& fromAngleAndEnumeration = m_animationElement->animationMode() ==
ToAnimation
? animated->angleAndEnumeration() : from->angleAndEnumeration();
SVGAnimatedColor.cpp
70
Color fromColor = m_animationElement->animationMode() ==
ToAnimation
? animated->color() : from->color();
SVGAnimatedEnumeration.cpp
150
unsigned fromEnumeration = m_animationElement->animationMode() ==
ToAnimation
? animated->enumeration() : from->enumeration();
SVGAnimatedLength.cpp
94
SVGLength fromSVGLength = m_animationElement->animationMode() ==
ToAnimation
? animated->length() : from->length();
SVGAnimatedLengthList.cpp
96
SVGLengthList fromLengthList = m_animationElement->animationMode() ==
ToAnimation
? animated->lengthList() : from->lengthList();
SVGAnimatedPath.cpp
115
bool isToAnimation = m_animationElement->animationMode() ==
ToAnimation
;
SVGAnimatedTransformList.cpp
103
const SVGTransformList& fromTransformList = m_animationElement->animationMode() ==
ToAnimation
? animated->transformList() : from->transformList();
SVGAnimationElement.cpp
295
setAnimationMode(fromValue().isEmpty() ?
ToAnimation
: FromToAnimation);
359
return value == sum && animationMode() !=
ToAnimation
;
589
else if (animationMode ==
ToAnimation
) {
634
else if (animationMode == FromToAnimation || animationMode ==
ToAnimation
)
Completed in 133 milliseconds