OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:effectivepercent
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimationElement.cpp
484
void SVGAnimationElement::currentValuesFromKeyPoints(float percent, float&
effectivePercent
, String& from, String& to) const
489
effectivePercent
= calculatePercentFromKeyPoints(percent);
490
unsigned index =
effectivePercent
== 1 ? m_values.size() - 2 : static_cast<unsigned>(
effectivePercent
* (m_values.size() - 1));
495
void SVGAnimationElement::currentValuesForValuesAnimation(float percent, float&
effectivePercent
, String& from, String& to)
504
effectivePercent
= 1;
519
return currentValuesFromKeyPoints(percent,
effectivePercent
, from, to);
531
effectivePercent
= 0;
551
effectivePercent
= (percent - fromPercent) / (toPercent - fromPercent);
555
effectivePercent
= calculatePercentForSpline(effectivePercent, index)
[
all
...]
SVGAnimationElement.h
214
void currentValuesForValuesAnimation(float percent, float&
effectivePercent
, String& from, String& to);
217
void currentValuesFromKeyPoints(float percent, float&
effectivePercent
, String& from, String& to) const;
Completed in 40 milliseconds