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 446 float fromPercent = m_keyTimes[index];
449 float keyPointPercent = (percent - fromPercent) / (toPercent - fromPercent);
516 float fromPercent;
519 fromPercent = m_keyTimes[index];
523 fromPercent = static_cast<float>(index) / (valuesCount - 1);
531 ASSERT(toPercent > fromPercent);
532 effectivePercent = (percent - fromPercent) / (toPercent - fromPercent);
SVGLength.cpp 406 float fromPercent = from->valueAsPercentage() * 100;
408 length->newValueSpecifiedUnits(LengthTypePercentage, blink::blend(fromPercent, toPercent, progress));

Completed in 80 milliseconds