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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedPointList.cpp 104 float animatedY = animatedPointList[i].y();
106 m_animationElement->animateAdditiveNumber(percentage, repeatCount, effectiveFrom.y(), toPointList[i].y(), effectiveToAtEnd.y(), animatedY);
107 animatedPointList[i] = FloatPoint(animatedX, animatedY);
SVGAnimatedRect.cpp 85 float animatedY = animatedRect.y();
89 m_animationElement->animateAdditiveNumber(percentage, repeatCount, fromRect.y(), toRect.y(), toAtEndOfDurationRect.y(), animatedY);
93 animatedRect = SVGRect(animatedX, animatedY, animatedWidth, animatedHeight);
SVGAnimateMotionElement.cpp 271 float animatedY = 0;
272 animateAdditiveNumber(percentage, repeatCount, m_fromPoint.y(), m_toPoint.y(), toPointAtEndOfDuration.y(), animatedY);
274 transform->translate(animatedX, animatedY);

Completed in 134 milliseconds