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

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

Completed in 34 milliseconds