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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPointList.cpp 153 FloatPoint effectiveToAtEnd;
155 effectiveToAtEnd = toAtEndOfDurationList->at(i)->value();
157 animationElement->animateAdditiveNumber(percentage, repeatCount, effectiveFrom.x(), effectiveTo.x(), effectiveToAtEnd.x(), animatedX);
158 animationElement->animateAdditiveNumber(percentage, repeatCount, effectiveFrom.y(), effectiveTo.y(), effectiveToAtEnd.y(), animatedY);
SVGNumberList.cpp 132 float effectiveToAtEnd = i < toAtEndOfDurationListSize ? toAtEndOfDurationList->at(i)->value() : 0;
135 animationElement->animateAdditiveNumber(percentage, repeatCount, effectiveFrom, effectiveTo, effectiveToAtEnd, animated);
SVGLengthList.cpp 163 float effectiveToAtEnd = i < toAtEndOfDurationListSize ? toAtEndOfDurationList->at(i)->value(lengthContext) : 0;
165 animationElement->animateAdditiveNumber(percentage, repeatCount, effectiveFrom, effectiveTo, effectiveToAtEnd, animatedNumber);
SVGTransformList.cpp 328 RefPtr<SVGTransform> effectiveToAtEnd = !toAtEndOfDurationList->isEmpty() ? toAtEndOfDurationList->at(0) : SVGTransform::create(toTransform->transformType(), SVGTransform::ConstructZeroTransform);
329 append(SVGTransformDistance::addSVGTransforms(currentTransform, effectiveToAtEnd, repeatCount));

Completed in 8237 milliseconds