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

  /external/webkit/WebCore/svg/
SVGAnimationElement.h 102 void currentValuesForValuesAnimation(float percent, float& effectivePercent, String& from, String& to) const;
105 void currentValuesFromKeyPoints(float percent, float& effectivePercent, String& from, String& to) const;
SVGAnimationElement.cpp 407 void SVGAnimationElement::currentValuesFromKeyPoints(float percent, float& effectivePercent, String& from, String& to) const
412 effectivePercent = calculatePercentFromKeyPoints(percent);
413 unsigned index = effectivePercent == 1.0f ? m_values.size() - 2 : static_cast<unsigned>(effectivePercent * (m_values.size() - 1));
418 void SVGAnimationElement::currentValuesForValuesAnimation(float percent, float& effectivePercent, String& from, String& to) const
426 return currentValuesFromKeyPoints(percent, effectivePercent, from, to);
444 effectivePercent = 0.0f;
464 effectivePercent = percent == 1.0f ? 1.0f : (percent - fromPercent) / (toPercent - fromPercent);
468 effectivePercent = calculatePercentForSpline(effectivePercent, index)
    [all...]

Completed in 297 milliseconds