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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPointList.cpp 146 float animatedX = at(i)->x();
157 animationElement->animateAdditiveNumber(percentage, repeatCount, effectiveFrom.x(), effectiveTo.x(), effectiveToAtEnd.x(), animatedX);
159 at(i)->setValue(FloatPoint(animatedX, animatedY));
SVGRect.cpp 135 float animatedX = x();
139 animationElement->animateAdditiveNumber(percentage, repeatCount, fromRect->x(), toRect->x(), toAtEndOfDurationRect->x(), animatedX);
144 m_value = FloatRect(animatedX, animatedY, animatedWidth, animatedHeight);
SVGAnimateMotionElement.cpp 243 float animatedX = 0;
244 animateAdditiveNumber(percentage, repeatCount, m_fromPoint.x(), m_toPoint.x(), toPointAtEndOfDuration.x(), animatedX);
249 transform->translate(animatedX, animatedY);

Completed in 4627 milliseconds