Home
last modified time | relevance | path

Searched refs:fromPercent (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGAnimationElement.cpp459 float fromPercent = m_keyTimes[index]; in calculatePercentFromKeyPoints() local
467 float keyPointPercent = (percent - fromPercent) / (toPercent - fromPercent); in calculatePercentFromKeyPoints()
535 float fromPercent; in currentValuesForValuesAnimation() local
538 fromPercent = m_keyTimes[index]; in currentValuesForValuesAnimation()
542 fromPercent = static_cast<float>(index) / (valuesCount - 1); in currentValuesForValuesAnimation()
550 ASSERT(toPercent > fromPercent); in currentValuesForValuesAnimation()
551 effectivePercent = (percent - fromPercent) / (toPercent - fromPercent); in currentValuesForValuesAnimation()
DSVGLength.h120 float fromPercent = from.valueAsPercentage() * 100; in blend() local
122 …length.newValueSpecifiedUnits(LengthTypePercentage, WebCore::blend(fromPercent, toPercent, progres… in blend()