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

  /external/webkit/Source/WebCore/platform/
Length.h 192 float toPercent = isZero() ? 0 : percent();
193 return Length(fromPercent + (toPercent - fromPercent) * progress, Percent);
  /external/webkit/Source/WebCore/svg/
SVGAnimationElement.cpp 412 float toPercent = m_keyTimes[index + 1];
419 float keyPointPercent = percent == 1 ? 1 : (percent - fromPercent) / (toPercent - fromPercent);
464 float toPercent;
467 toPercent = m_keyTimes[index + 1];
471 toPercent = static_cast<float>(index + 1) / (valuesCount - 1);
478 ASSERT(toPercent > fromPercent);
479 effectivePercent = percent == 1 ? 1 : (percent - fromPercent) / (toPercent - fromPercent);

Completed in 57 milliseconds