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.cpp446 float fromPercent = m_keyTimes[index]; in calculatePercentFromKeyPoints() local
449 float keyPointPercent = (percent - fromPercent) / (toPercent - fromPercent); in calculatePercentFromKeyPoints()
516 float fromPercent; in currentValuesForValuesAnimation() local
519 fromPercent = m_keyTimes[index]; in currentValuesForValuesAnimation()
523 fromPercent = static_cast<float>(index) / (valuesCount - 1); in currentValuesForValuesAnimation()
531 ASSERT(toPercent > fromPercent); in currentValuesForValuesAnimation()
532 effectivePercent = (percent - fromPercent) / (toPercent - fromPercent); in currentValuesForValuesAnimation()
DSVGLength.cpp406 float fromPercent = from->valueAsPercentage() * 100; in blend() local
408 …length->newValueSpecifiedUnits(LengthTypePercentage, blink::blend(fromPercent, toPercent, progress… in blend()