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

/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGAnimationElement.cpp451 float fromPercent = m_keyTimes[index]; local
459 float keyPointPercent = (percent - fromPercent) / (toPercent - fromPercent);
527 float fromPercent; local
530 fromPercent = m_keyTimes[index];
534 fromPercent = static_cast<float>(index) / (valuesCount - 1);
542 ASSERT_WITH_SECURITY_IMPLICATION(toPercent > fromPercent);
543 effectivePercent = (percent - fromPercent) / (toPercent - fromPercent);
H A DSVGLength.h120 float fromPercent = from.valueAsPercentage() * 100; local
122 length.newValueSpecifiedUnits(LengthTypePercentage, WebCore::blend(fromPercent, toPercent, progress), ec);
/macosx-10.10/WebCore-7600.1.25/platform/
H A DLength.h417 float fromPercent = from.isZero() ? 0 : from.percent(); local
419 return Length(WebCore::blend(fromPercent, toPercent, progress), Percent);

Completed in 71 milliseconds