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

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

Completed in 100 milliseconds