HomeSort by relevance Sort by last modified time
    Searched refs:effectivePercent (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimationElement.cpp 466 void SVGAnimationElement::currentValuesFromKeyPoints(float percent, float& effectivePercent, String& from, String& to) const
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)
486 effectivePercent = 1;
500 return currentValuesFromKeyPoints(percent, effectivePercent, from, to);
512 effectivePercent = 0;
532 effectivePercent = (percent - fromPercent) / (toPercent - fromPercent);
536 effectivePercent = calculatePercentForSpline(effectivePercent, index)
    [all...]
SVGAnimationElement.h 183 void currentValuesForValuesAnimation(float percent, float& effectivePercent, String& from, String& to);
186 void currentValuesFromKeyPoints(float percent, float& effectivePercent, String& from, String& to) const;

Completed in 166 milliseconds