OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_animationElement
(Results
1 - 19
of
19
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedColor.cpp
67
ASSERT(
m_animationElement
);
70
Color fromColor =
m_animationElement
->animationMode() == ToAnimation ? animated->color() : from->color();
76
m_animationElement
->adjustForInheritance<Color>(parseColorFromString,
m_animationElement
->fromPropertyValueType(), fromColor, m_contextElement);
77
m_animationElement
->adjustForInheritance<Color>(parseColorFromString,
m_animationElement
->toPropertyValueType(), toColor, m_contextElement);
80
if (
m_animationElement
->fromPropertyValueType() == CurrentColorValue)
82
if (
m_animationElement
->toPropertyValueType() == CurrentColorValue)
86
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, fromColor.red(), toColor.red(), toAtEndOfDurationColor.red(), animatedRed);
89
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, fromColor.green(), toColor.green(), toAtEndOfDurat (…)
[
all
...]
SVGAnimatedString.cpp
77
ASSERT(
m_animationElement
);
85
m_animationElement
->adjustForInheritance<String>(parseStringFromString,
m_animationElement
->fromPropertyValueType(), fromString, m_contextElement);
86
m_animationElement
->adjustForInheritance<String>(parseStringFromString,
m_animationElement
->toPropertyValueType(), toString, m_contextElement);
88
m_animationElement
->animateDiscreteType<String>(percentage, fromString, toString, animatedString);
SVGAnimatedNumber.cpp
87
ASSERT(
m_animationElement
);
90
float fromNumber =
m_animationElement
->animationMode() == ToAnimation ? animated->number() : from->number();
96
m_animationElement
->adjustForInheritance<float>(parseNumberFromString,
m_animationElement
->fromPropertyValueType(), fromNumber, m_contextElement);
97
m_animationElement
->adjustForInheritance<float>(parseNumberFromString,
m_animationElement
->toPropertyValueType(), toNumber, m_contextElement);
99
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, fromNumber, toNumber, toAtEndOfDurationNumber, animatedNumber);
SVGAnimatedLength.cpp
91
ASSERT(
m_animationElement
);
94
SVGLength fromSVGLength =
m_animationElement
->animationMode() == ToAnimation ? animated->length() : from->length();
100
m_animationElement
->adjustForInheritance<SVGLength>(parseLengthFromString,
m_animationElement
->fromPropertyValueType(), fromSVGLength, m_contextElement);
101
m_animationElement
->adjustForInheritance<SVGLength>(parseLengthFromString,
m_animationElement
->toPropertyValueType(), toSVGLength, m_contextElement);
106
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, fromSVGLength.value(lengthContext), toSVGLength.value(lengthContext), toAtEndOfDurationSVGLength.value(lengthContext), animatedNumber);
113
ASSERT(
m_animationElement
);
115
SVGLengthMode lengthMode = SVGLength::lengthModeForAnimatedLengthAttribute(
m_animationElement
->attributeName());
SVGAnimatedRect.cpp
76
ASSERT(
m_animationElement
);
79
const SVGRect& fromRect =
m_animationElement
->animationMode() == ToAnimation ? animated->rect() : from->rect();
88
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, fromRect.x(), toRect.x(), toAtEndOfDurationRect.x(), animatedX);
89
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, fromRect.y(), toRect.y(), toAtEndOfDurationRect.y(), animatedY);
90
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, fromRect.width(), toRect.width(), toAtEndOfDurationRect.width(), animatedWidth);
91
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, fromRect.height(), toRect.height(), toAtEndOfDurationRect.height(), animatedHeight);
SVGAnimatedLengthList.cpp
93
ASSERT(
m_animationElement
);
96
SVGLengthList fromLengthList =
m_animationElement
->animationMode() == ToAnimation ? animated->lengthList() : from->lengthList();
102
m_animationElement
->adjustForInheritance<SVGLengthList>(parseLengthListFromString,
m_animationElement
->fromPropertyValueType(), fromLengthList, m_contextElement);
103
m_animationElement
->adjustForInheritance<SVGLengthList>(parseLengthListFromString,
m_animationElement
->toPropertyValueType(), toLengthList, m_contextElement);
105
if (!
m_animationElement
->adjustFromToListValues<SVGLengthList>(fromLengthList, toLengthList, animatedLengthList, percentage))
124
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, effectiveFrom, toLengthList[i].value(lengthContext), effectiveToAtEnd, animatedNumber);
SVGAnimatedBoolean.cpp
72
ASSERT(
m_animationElement
);
75
bool fromBoolean =
m_animationElement
->animationMode() == ToAnimation ? animated->boolean() : from->boolean();
79
m_animationElement
->animateDiscreteType<bool>(percentage, fromBoolean, toBoolean, animatedBoolean);
SVGAnimatedPreserveAspectRatio.cpp
72
ASSERT(
m_animationElement
);
75
const SVGPreserveAspectRatio& fromPreserveAspectRatio =
m_animationElement
->animationMode() == ToAnimation ? animated->preserveAspectRatio() : from->preserveAspectRatio();
79
m_animationElement
->animateDiscreteType<SVGPreserveAspectRatio>(percentage, fromPreserveAspectRatio, toPreserveAspectRatio, animatedPreserveAspectRatio);
SVGAnimatedPointList.cpp
85
ASSERT(
m_animationElement
);
87
const SVGPointList& fromPointList =
m_animationElement
->animationMode() == ToAnimation ? animated->pointList() : from->pointList();
91
if (!
m_animationElement
->adjustFromToListValues<SVGPointList>(fromPointList, toPointList, animatedPointList, percentage))
106
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, effectiveFrom.x(), toPointList[i].x(), effectiveToAtEnd.x(), animatedX);
107
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, effectiveFrom.y(), toPointList[i].y(), effectiveToAtEnd.y(), animatedY);
SVGAnimatedEnumeration.cpp
109
ASSERT(
m_animationElement
);
111
animatedType->enumeration() = enumerationValueForTargetAttribute(
m_animationElement
->targetElement(),
m_animationElement
->attributeName(), string);
147
ASSERT(
m_animationElement
);
150
unsigned fromEnumeration =
m_animationElement
->animationMode() == ToAnimation ? animated->enumeration() : from->enumeration();
154
m_animationElement
->animateDiscreteType<unsigned>(percentage, fromEnumeration, toEnumeration, animatedEnumeration);
SVGAnimatedTransformList.cpp
97
ASSERT(
m_animationElement
);
103
const SVGTransformList& fromTransformList =
m_animationElement
->animationMode() == ToAnimation ? animated->transformList() : from->transformList();
109
if (!
m_animationElement
->adjustFromToListValues<SVGTransformList>(fromTransformList, toTransformList, animatedTransformList, percentage, false))
113
if (!animatedTransformList.isEmpty() && !
m_animationElement
->isAdditive())
120
if (
m_animationElement
->isAccumulated() && repeatCount) {
129
ASSERT(
m_animationElement
);
SVGAnimatedIntegerOptionalInteger.cpp
90
ASSERT(
m_animationElement
);
93
const pair<int, int>& fromIntegerPair =
m_animationElement
->animationMode() == ToAnimation ? animated->integerOptionalInteger() : from->integerOptionalInteger();
98
SVGAnimatedIntegerAnimator::calculateAnimatedInteger(
m_animationElement
, percentage, repeatCount, fromIntegerPair.first, toIntegerPair.first, toAtEndOfDurationIntegerPair.first, animatedIntegerPair.first);
99
SVGAnimatedIntegerAnimator::calculateAnimatedInteger(
m_animationElement
, percentage, repeatCount, fromIntegerPair.second, toIntegerPair.second, toAtEndOfDurationIntegerPair.second, animatedIntegerPair.second);
SVGAnimatedNumberList.cpp
84
ASSERT(
m_animationElement
);
86
const SVGNumberList& fromNumberList =
m_animationElement
->animationMode() == ToAnimation ? animated->numberList() : from->numberList();
90
if (!
m_animationElement
->adjustFromToListValues<SVGNumberList>(fromNumberList, toNumberList, animatedNumberList, percentage))
100
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, effectiveFrom, toNumberList[i].value(), effectiveToAtEnd, animatedNumberList[i].valueRef());
SVGAnimatedNumberOptionalNumber.cpp
87
ASSERT(
m_animationElement
);
90
const pair<float, float>& fromNumberPair =
m_animationElement
->animationMode() == ToAnimation ? animated->numberOptionalNumber() : from->numberOptionalNumber();
95
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, fromNumberPair.first, toNumberPair.first, toAtEndOfDurationNumberPair.first, animatedNumberPair.first);
96
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, fromNumberPair.second, toNumberPair.second, toAtEndOfDurationNumberPair.second, animatedNumberPair.second);
SVGAnimatedPath.cpp
106
ASSERT(
m_animationElement
);
115
bool isToAnimation =
m_animationElement
->animationMode() == ToAnimation;
123
if (!fromPath->size() || (
m_animationElement
->isAdditive() && !isToAnimation))
127
if (!
m_animationElement
->adjustFromToListValues<SVGPathByteStream>(*fromPath, *toPath, *animatedPath, percentage, false))
137
if (
m_animationElement
->isAccumulated() && repeatCount)
SVGAnimatedInteger.cpp
83
ASSERT(
m_animationElement
);
86
int fromInteger =
m_animationElement
->animationMode() == ToAnimation ? animated->integer() : from->integer();
91
calculateAnimatedInteger(
m_animationElement
, percentage, repeatCount, fromInteger, toInteger, toAtEndOfDurationInteger, animatedInteger);
SVGAnimatedAngle.cpp
98
ASSERT(
m_animationElement
);
101
const pair<SVGAngle, unsigned>& fromAngleAndEnumeration =
m_animationElement
->animationMode() == ToAnimation ? animated->angleAndEnumeration() : from->angleAndEnumeration();
146
m_animationElement
->animateAdditiveNumber(percentage, repeatCount, fromAngleAndEnumeration.first.value(), toAngleAndEnumeration.first.value(), toAtEndOfDurationSVGAngle.value(), animatedAngle);
SVGAnimatedTypeAnimator.cpp
40
,
m_animationElement
(animationElement)
SVGAnimatedTypeAnimator.h
182
SVGAnimationElement*
m_animationElement
;
Completed in 121 milliseconds