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

  /external/webkit/Source/WebCore/platform/
Length.h 191 float fromPercent = from.isZero() ? 0 : from.percent();
193 return Length(fromPercent + (toPercent - fromPercent) * progress, Percent);
  /external/webkit/Source/WebCore/svg/
SVGAnimationElement.cpp 411 float fromPercent = m_keyTimes[index];
419 float keyPointPercent = percent == 1 ? 1 : (percent - fromPercent) / (toPercent - fromPercent);
463 float fromPercent;
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 42 milliseconds