Searched defs:toPercent (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGLength.cpp407 float toPercent = valueAsPercentage() * 100; local
408 length->newValueSpecifiedUnits(LengthTypePercentage, blink::blend(fromPercent, toPercent, progress));
H A DSVGAnimationElement.cpp447 float toPercent = m_keyTimes[index + 1]; local
449 float keyPointPercent = (percent - fromPercent) / (toPercent - fromPercent);
517 float toPercent; local
520 toPercent = m_keyTimes[index + 1];
524 toPercent = static_cast<float>(index + 1) / (valuesCount - 1);
531 ASSERT(toPercent > fromPercent);
532 effectivePercent = (percent - fromPercent) / (toPercent - fromPercent);

Completed in 222 milliseconds