Home
last modified time | relevance | path

Searched refs:mTmpTransform (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/
DTaskStackAnimationHelper.java112 private TaskViewTransform mTmpTransform = new TaskViewTransform(); field in TaskStackAnimationHelper
154 mTmpTransform, null /* frontTransform */); in prepareForEnterAnimation()
155 top = mTmpTransform.rect.top; in prepareForEnterAnimation()
165 stackLayout.getStackTransform(task, stackScroller.getStackScroll(), mTmpTransform, in prepareForEnterAnimation()
177 mTmpTransform, null); in prepareForEnterAnimation()
178 mTmpTransform.rect.offset(0, -top); in prepareForEnterAnimation()
179 mTmpTransform.alpha = 0f; in prepareForEnterAnimation()
180 mStackView.updateTaskViewToTransform(tv, mTmpTransform, in prepareForEnterAnimation()
183 mTmpTransform, null); in prepareForEnterAnimation()
184 mTmpTransform.alpha = 1f; in prepareForEnterAnimation()
[all …]
DRecentsTransitionComposer.java48 private TaskViewTransform mTmpTransform = new TaskViewTransform(); field in RecentsTransitionComposer
85 mTmpTransform.fillIn(taskView); in composeDockAnimationSpec()
87 Bitmap buffer = RecentsTransitionComposer.composeTaskBitmap(taskView, mTmpTransform); in composeDockAnimationSpec()
117 mTmpTransform.fillIn(taskView); in composeAnimationSpecs()
118 stackLayout.transformToScreenCoordinates(mTmpTransform, windowRect); in composeAnimationSpecs()
120 mTmpTransform, true /* addHeaderBitmap */); in composeAnimationSpecs()
DTaskStackViewTouchHandler.java104 private TaskViewTransform mTmpTransform = new TaskViewTransform(); field in TaskStackViewTouchHandler
662 mTmpTransform.copyFrom(fromTransform); in updateTaskViewTransforms()
664 mTmpTransform.rect.set(Utilities.RECTF_EVALUATOR.evaluate(dismissFraction, in updateTaskViewTransforms()
666 mTmpTransform.dimAlpha = fromTransform.dimAlpha + (toTransform.dimAlpha - in updateTaskViewTransforms()
668 mTmpTransform.viewOutlineAlpha = fromTransform.viewOutlineAlpha + in updateTaskViewTransforms()
671 mTmpTransform.translationZ = fromTransform.translationZ + in updateTaskViewTransforms()
674 mSv.updateTaskViewToTransform(tv, mTmpTransform, AnimationProps.IMMEDIATE); in updateTaskViewTransforms()
DTaskStackView.java207 private TaskViewTransform mTmpTransform = new TaskViewTransform(); field in TaskStackView
1899 mTmpTransform, null); in onBusEvent()
1900 mTmpTransform.scale = finalScale; in onBusEvent()
1901 mTmpTransform.translationZ = mLayoutAlgorithm.mMaxTranslationZ + 1; in onBusEvent()
1902 mTmpTransform.dimAlpha = 0f; in onBusEvent()
1903 updateTaskViewToTransform(event.taskView, mTmpTransform, in onBusEvent()
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/
DRecentsImpl.java251 TaskViewTransform mTmpTransform = new TaskViewTransform(); field in RecentsImpl
935 stackView.getScroller().getStackScroll(), mTmpTransform, null, windowOverrideRect); in getThumbnailTransitionTransform()
936 return mTmpTransform; in getThumbnailTransitionTransform()
/frameworks/base/services/core/java/com/android/server/wm/
DWindowManagerService.java573 final Matrix mTmpTransform = new Matrix(); field in WindowManagerService