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

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimationElement.cpp466 void SVGAnimationElement::currentValuesFromKeyPoints(float percent, float& effectivePercent, String& from, String& to) const argument
471 effectivePercent = calculatePercentFromKeyPoints(percent);
472 unsigned index = effectivePercent == 1 ? m_values.size() - 2 : static_cast<unsigned>(effectivePercent * (m_values.size() - 1));
477 void SVGAnimationElement::currentValuesForValuesAnimation(float percent, float& effectivePercent, String& from, String& to) argument
486 effectivePercent = 1;
500 return currentValuesFromKeyPoints(percent, effectivePercent, from, to);
512 effectivePercent = 0;
532 effectivePercent = (percent - fromPercent) / (toPercent - fromPercent);
536 effectivePercent
602 float effectivePercent; local
[all...]
H A DSVGAnimationElement.h183 void currentValuesForValuesAnimation(float percent, float& effectivePercent, String& from, String& to);
186 void currentValuesFromKeyPoints(float percent, float& effectivePercent, String& from, String& to) const;

Completed in 1497 milliseconds