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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLength.h 121 float toPercent = valueAsPercentage() * 100;
122 length.newValueSpecifiedUnits(LengthTypePercentage, WebCore::blend(fromPercent, toPercent, progress), es);
SVGAnimationElement.cpp 460 float toPercent = m_keyTimes[index + 1];
467 float keyPointPercent = (percent - fromPercent) / (toPercent - fromPercent);
537 float toPercent;
540 toPercent = m_keyTimes[index + 1];
544 toPercent = static_cast<float>(index + 1) / (valuesCount - 1);
551 ASSERT(toPercent > fromPercent);
552 effectivePercent = (percent - fromPercent) / (toPercent - fromPercent);
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Length.h 257 float toPercent = isZero() ? 0 : percent();
258 return Length(WebCore::blend(fromPercent, toPercent, progress), Percent);

Completed in 91 milliseconds