Home
last modified time | relevance | path

Searched refs:mStartBounds (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowChangeAnimationSpec.java49 private final Rect mStartBounds; field in WindowChangeAnimationSpec
60 mStartBounds = new Rect(startBounds); in WindowChangeAnimationSpec()
89 boolean growing = mEndBounds.width() - mStartBounds.width() in createBoundsInterpolator()
90 + mEndBounds.height() - mStartBounds.height() >= 0; in createBoundsInterpolator()
93 float startScaleX = scalePart * ((float) mStartBounds.width()) / mEndBounds.width() in createBoundsInterpolator()
95 float startScaleY = scalePart * ((float) mStartBounds.height()) / mEndBounds.height() in createBoundsInterpolator()
111 mAnimation.initialize(mStartBounds.width(), mStartBounds.height(), in createBoundsInterpolator()
121 final Animation translateAnim = new TranslateAnimation(mStartBounds.left, in createBoundsInterpolator()
122 mEndBounds.left, mStartBounds.top, mEndBounds.top); in createBoundsInterpolator()
125 Rect startClip = new Rect(mStartBounds); in createBoundsInterpolator()
[all …]
H A DRemoteAnimationController.java464 final Rect mStartBounds;
475 mStartBounds = new Rect(startBounds);
477 mStartBounds, mShowBackdrop);
489 mStartBounds = null;
537 final Rect mStartBounds = new Rect();
546 mStartBounds.set(startBounds);
571 if (mStartBounds.isEmpty()) {
580 t.setPosition(animationLeash, mPosition.x + mStartBounds.left - mEndBounds.left,
581 mPosition.y + mStartBounds.top - mEndBounds.top);
582 t.setWindowCrop(animationLeash, mStartBounds.width(), mStartBounds.height());
H A DActivityRecord.java10614 record.mStartBounds, task.getTaskInfo(), checkEnterPictureInPictureAppOpsState());
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/back/
H A DBackAnimationBackground.java47 private Rect mStartBounds; field in BackAnimationBackground
80 mStartBounds = startRect; in ensureBackground()
101 if (mCustomizer == null || mStartBounds.isEmpty()) {
114 mStartBounds);
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/desktopmode/
H A DDesktopModeVisualIndicator.java278 private final Rect mStartBounds; field in DesktopModeVisualIndicator.VisualIndicatorAnimator
285 mStartBounds = new Rect(startBounds); in VisualIndicatorAnimator()
394 if (mStartBounds.equals(mEndBounds)) { in updateBounds()
397 Rect currentBounds = mRectEvaluator.evaluate(fraction, mStartBounds, mEndBounds); in updateBounds()