Home
last modified time | relevance | path

Searched refs:effectivePercent (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGAnimationElement.cpp484 void SVGAnimationElement::currentValuesFromKeyPoints(float percent, float& effectivePercent, String… in currentValuesFromKeyPoints() argument
489 effectivePercent = calculatePercentFromKeyPoints(percent); in currentValuesFromKeyPoints()
490 …unsigned index = effectivePercent == 1 ? m_values.size() - 2 : static_cast<unsigned>(effectivePerc… in currentValuesFromKeyPoints()
495 void SVGAnimationElement::currentValuesForValuesAnimation(float percent, float& effectivePercent, S… in currentValuesForValuesAnimation() argument
504 effectivePercent = 1; in currentValuesForValuesAnimation()
519 return currentValuesFromKeyPoints(percent, effectivePercent, from, to); in currentValuesForValuesAnimation()
531 effectivePercent = 0; in currentValuesForValuesAnimation()
551 effectivePercent = (percent - fromPercent) / (toPercent - fromPercent); in currentValuesForValuesAnimation()
555 effectivePercent = calculatePercentForSpline(effectivePercent, index); in currentValuesForValuesAnimation()
615 float effectivePercent; in updateAnimation() local
[all …]
DSVGAnimationElement.h214 …void currentValuesForValuesAnimation(float percent, float& effectivePercent, String& from, String&…
217 …void currentValuesFromKeyPoints(float percent, float& effectivePercent, String& from, String& to) …