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 484 void SVGAnimationElement::currentValuesFromKeyPoints(float percent, float& effectivePercent, String& from, String& to) const
489 effectivePercent = calculatePercentFromKeyPoints(percent);
490 unsigned index = effectivePercent == 1 ? m_values.size() - 2 : static_cast<unsigned>(effectivePercent * (m_values.size() - 1));
495 void SVGAnimationElement::currentValuesForValuesAnimation(float percent, float& effectivePercent, String& from, String& to)
504 effectivePercent = 1;
520 return currentValuesFromKeyPoints(percent, effectivePercent, from, to);
532 effectivePercent = 0;
552 effectivePercent = (percent - fromPercent) / (toPercent - fromPercent);
556 effectivePercent = calculatePercentForSpline(effectivePercent, index)
    [all...]
SVGAnimationElement.h 214 void currentValuesForValuesAnimation(float percent, float& effectivePercent, String& from, String& to);
217 void currentValuesFromKeyPoints(float percent, float& effectivePercent, String& from, String& to) const;

Completed in 3415 milliseconds