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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimationElement.cpp 459 float fromPercent = m_keyTimes[index];
467 float keyPointPercent = (percent - fromPercent) / (toPercent - fromPercent);
535 float fromPercent;
538 fromPercent = m_keyTimes[index];
542 fromPercent = static_cast<float>(index) / (valuesCount - 1);
550 ASSERT(toPercent > fromPercent);
551 effectivePercent = (percent - fromPercent) / (toPercent - fromPercent);
SVGLength.h 120 float fromPercent = from.valueAsPercentage() * 100;
122 length.newValueSpecifiedUnits(LengthTypePercentage, WebCore::blend(fromPercent, toPercent, progress), exceptionState);

Completed in 30 milliseconds