HomeSort by relevance Sort by last modified time
    Searched defs:toTransform (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
InterpolatedTransformOperation.cpp 49 TransformationMatrix toTransform;
51 to.apply(borderBoxSize, toTransform);
53 toTransform.blend(fromTransform, progress);
54 transform.multiply(toTransform);
TransformOperations.cpp 135 static void boundingBoxForArc(const FloatPoint3D& point, const RotateTransformOperation& fromTransform, const RotateTransformOperation& toTransform, double minProgress, double maxProgress, FloatBox& box)
142 double toDegrees = toTransform.angle();
144 if (axis.dot(toTransform.axis()) < 0)
147 fromDegrees = blend(fromDegrees, toTransform.angle(), minProgress);
284 RefPtr<TransformOperation> toTransform;
287 toTransform = fromOperation->blend(toOperation.get(), 1-maxProgress, false);
290 toTransform = toOperation->blend(fromOperation.get(), maxProgress, false);
292 if (!fromTransform || !toTransform)
297 toTransform->apply(toMatrix, FloatSize());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewFilterAlgorithm.java 106 TaskViewTransform toTransform = taskTransforms.get(i);
107 if (toTransform.visible) {
114 TaskViewTransform fromTransform = new TaskViewTransform(toTransform);
118 toTransform.startDelay = offset * Constants.Values.TaskStackView.FilterStartDelay;
119 childViewTransformsOut.put(tv, toTransform);
123 Math.abs(toTransform.translationY - fromTransform.translationY));
150 TaskViewTransform toTransform;
156 toTransform = curTaskTransforms.get(curTasks.indexOf(task));
158 toTransform = new TaskViewTransform(taskTransforms.get(taskIndex));
160 tv.prepareTaskTransformForFilterTaskVisible(toTransform);
    [all...]
TaskView.java 190 void updateViewPropertiesToTaskTransform(TaskViewTransform toTransform, int duration) {
191 updateViewPropertiesToTaskTransform(toTransform, duration, null);
194 void updateViewPropertiesToTaskTransform(TaskViewTransform toTransform, int duration,
200 toTransform.hasTranslationZChangedFrom(getTranslationZ())) {
201 setTranslationZ(toTransform.translationZ);
207 toTransform.applyToTaskView(this, duration, mConfig.fastOutSlowInInterpolator, false,
216 setTaskProgress(toTransform.p);
218 mTaskProgressAnimator = ObjectAnimator.ofFloat(this, "taskProgress", toTransform.p);
235 void prepareTaskTransformForFilterTaskHidden(TaskViewTransform toTransform) {
237 toTransform.alpha = 0f
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTransformList.cpp 296 RefPtr<SVGTransform> toTransform = otherList->at(0);
298 ASSERT(fromTransform->transformType() == toTransform->transformType());
300 append(SVGTransformDistance::addSVGTransforms(fromTransform, toTransform));
321 RefPtr<SVGTransform> toTransform = toList->at(0);
324 if (fromList->length() && fromList->at(0)->transformType() == toTransform->transformType())
327 effectiveFrom = SVGTransform::create(toTransform->transformType(), SVGTransform::ConstructZeroTransform);
333 RefPtr<SVGTransform> currentTransform = SVGTransformDistance(effectiveFrom, toTransform).scaledDistance(percentage).addToSVGTransform(effectiveFrom);
335 RefPtr<SVGTransform> effectiveToAtEnd = !toAtEndOfDurationList->isEmpty() ? toAtEndOfDurationList->at(0) : SVGTransform::create(toTransform->transformType(), SVGTransform::ConstructZeroTransform);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
AlternateRecentsComponent.java 413 TaskViewTransform toTransform = getThumbnailTransitionTransform(topTask.id, isTopTaskHome,
415 if (toTransform != null && toTask.key != null) {
416 Rect toTaskRect = toTransform.rect;
417 int toHeaderWidth = (int) (mHeaderBar.getMeasuredWidth() * toTransform.scale);
418 int toHeaderHeight = (int) (mHeaderBar.getMeasuredHeight() * toTransform.scale);
425 c.scale(toTransform.scale, toTransform.scale);

Completed in 127 milliseconds