Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/svg/
DSVGAnimationElement.cpp411 float fromPercent = m_keyTimes[index]; in calculatePercentFromKeyPoints() local
419 float keyPointPercent = percent == 1 ? 1 : (percent - fromPercent) / (toPercent - fromPercent); in calculatePercentFromKeyPoints()
463 float fromPercent; in currentValuesForValuesAnimation() local
466 fromPercent = m_keyTimes[index]; in currentValuesForValuesAnimation()
470 fromPercent = static_cast<float>(index) / (valuesCount - 1); in currentValuesForValuesAnimation()
478 ASSERT(toPercent > fromPercent); in currentValuesForValuesAnimation()
479 effectivePercent = percent == 1 ? 1 : (percent - fromPercent) / (toPercent - fromPercent); in currentValuesForValuesAnimation()
/external/webkit/Source/WebCore/platform/
DLength.h191 float fromPercent = from.isZero() ? 0 : from.percent(); in blend() local
193 return Length(fromPercent + (toPercent - fromPercent) * progress, Percent); in blend()