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

  /external/webkit/WebCore/platform/
Length.h 179 double fromPercent = from.isZero() ? 0. : from.percent();
181 return Length(fromPercent + (toPercent - fromPercent) * progress, Percent);
  /external/webkit/WebCore/svg/
SVGAnimationElement.cpp 390 float fromPercent = m_keyTimes[index];
398 float keyPointPercent = percent == 1.0f ? 1.0f : (percent - fromPercent) / (toPercent - fromPercent);
448 float fromPercent;
451 fromPercent = m_keyTimes[index];
455 fromPercent = static_cast<float>(index) / (valuesCount - 1);
463 ASSERT(toPercent > fromPercent);
464 effectivePercent = percent == 1.0f ? 1.0f : (percent - fromPercent) / (toPercent - fromPercent);

Completed in 316 milliseconds