Home
last modified time | relevance | path

Searched refs:animatedNumber (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGAnimatedNumber.cpp39 float& animatedNumber = animtedType->number(); in constructFromString() local
40 if (!parseNumberFromString(string, animatedNumber)) in constructFromString()
41 animatedNumber = 0; in constructFromString()
93 float& animatedNumber = animated->number(); in calculateAnimatedValue() local
99 …tiveNumber(percentage, repeatCount, fromNumber, toNumber, toAtEndOfDurationNumber, animatedNumber); in calculateAnimatedValue()
DSVGAnimatedNumberOptionalNumber.cpp40 pair<float, float>& animatedNumber = animtedType->numberOptionalNumber(); in constructFromString() local
41 if (!parseNumberOptionalNumber(string, animatedNumber.first, animatedNumber.second)) { in constructFromString()
42 animatedNumber.first = 0; in constructFromString()
43 animatedNumber.second = 0; in constructFromString()
DSVGAnimatedInteger.cpp76 float animatedNumber = animatedInteger; in calculateAnimatedInteger() local
77 …eNumber(percentage, repeatCount, fromInteger, toInteger, toAtEndOfDurationInteger, animatedNumber); in calculateAnimatedInteger()
78 animatedInteger = static_cast<int>(roundf(animatedNumber)); in calculateAnimatedInteger()
DSVGAnimatedLength.cpp104 float animatedNumber = animatedSVGLength.value(lengthContext); in calculateAnimatedValue() local
106 …toSVGLength.value(lengthContext), toAtEndOfDurationSVGLength.value(lengthContext), animatedNumber); in calculateAnimatedValue()
108 …animatedSVGLength.setValue(lengthContext, animatedNumber, m_lengthMode, unitType, ASSERT_NO_EXCEPT… in calculateAnimatedValue()
DSVGAnimatedLengthList.cpp114 float animatedNumber = animatedLengthList[i].value(lengthContext); in calculateAnimatedValue() local
124 …epeatCount, effectiveFrom, toLengthList[i].value(lengthContext), effectiveToAtEnd, animatedNumber); in calculateAnimatedValue()
125 …animatedLengthList[i].setValue(lengthContext, animatedNumber, m_lengthMode, unitType, ASSERT_NO_EX… in calculateAnimatedValue()
DSVGAnimationElement.h147 …epeatCount, float fromNumber, float toNumber, float toAtEndOfDurationNumber, float& animatedNumber) in animateAdditiveNumber() argument
159 animatedNumber += number; in animateAdditiveNumber()
161 animatedNumber = number; in animateAdditiveNumber()