Home
last modified time | relevance | path

Searched refs:getStartAbsBounds (Results 1 – 20 of 20) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/unfold/
DUnfoldTransitionHandler.java232 if (displayChange.getStartAbsBounds() == null || displayChange.getEndAbsBounds() == null) { in isUnfoldDisplayChange()
239 final int startArea = displayChange.getStartAbsBounds().width() in isUnfoldDisplayChange()
240 * displayChange.getStartAbsBounds().height(); in isUnfoldDisplayChange()
261 if (change.getEndAbsBounds() == null || change.getStartAbsBounds() == null) { in shouldPlayUnfoldAnimation()
267 final int beforeArea = change.getStartAbsBounds().width() in shouldPlayUnfoldAnimation()
268 * change.getStartAbsBounds().height(); in shouldPlayUnfoldAnimation()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/activityembedding/
DActivityEmbeddingAnimationRunner.java205 && !change.getStartAbsBounds().equals(change.getEndAbsBounds())) { in createAnimationAdapters()
254 closingWholeScreenBounds.union(change.getStartAbsBounds()); in createOpenCloseAnimationAdapters()
317 return !closingChange.getStartAbsBounds().equals(closingChange.getEndAbsBounds()); in shouldUseSnapshotAnimationForClosingChange()
404 || change.getStartAbsBounds().equals(change.getEndAbsBounds())) { in createChangeAnimationAdapters()
426 parentBounds.union(boundsAnimationChange.getStartAbsBounds()); in createChangeAnimationAdapters()
432 parentBounds.union(change.getStartAbsBounds()); in createChangeAnimationAdapters()
522 final Rect cropBounds = new Rect(screenshotChange.getStartAbsBounds()); in getOrCreateScreenshot()
541 || change.getStartAbsBounds().equals(change.getEndAbsBounds())) { in shouldUseJumpCutForChangeTransition()
589 if (changingChange.getStartAbsBounds().equals(openChange.getEndAbsBounds()) in shouldUseJumpCutForChangeTransition()
590 && changingChange.getEndAbsBounds().equals(closeChange.getStartAbsBounds())) { in shouldUseJumpCutForChangeTransition()
DActivityEmbeddingAnimationSpec.java125 final Rect bounds = change.getStartAbsBounds(); in createChangeBoundsCloseAnimation()
158 final Rect startBounds = change.getStartAbsBounds(); in createChangeBoundsChangeAnimations()
DActivityEmbeddingAnimationAdapter.java94 final Rect startBounds = change.getStartAbsBounds(); in ActivityEmbeddingAnimationAdapter()
/frameworks/base/libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/
DTransitionUtil.java119 && change.getStartAbsBounds().equals(change.getEndAbsBounds()) in isOrderOnly()
175 (mode == TRANSIT_OPEN) ? change.getEndAbsBounds() : change.getStartAbsBounds(); in setupLeash()
328 new Rect(change.getStartAbsBounds()), in newTarget()
345 new android.graphics.Point(0, 0) /* position */, change.getStartAbsBounds(), in getDividerTarget()
346 change.getStartAbsBounds(), new WindowConfiguration(), true, null /* startLeash */, in getDividerTarget()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/desktopmode/
DEnterDesktopTaskTransitionHandler.java150 final Rect startBounds = change.getStartAbsBounds(); in animateMoveToDesktop()
162 change.getStartAbsBounds(), change.getEndAbsBounds()); in animateMoveToDesktop()
DExitDesktopTaskTransitionHandler.java159 final Rect startBounds = change.getStartAbsBounds(); in startChangeTransition()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/transition/
DScreenRotationAnimation.java122 mStartWidth = change.getStartAbsBounds().width(); in ScreenRotationAnimation()
123 mStartHeight = change.getStartAbsBounds().height(); in ScreenRotationAnimation()
DTransitionAnimationHelper.java320 final int targetSurfaceHeight = Math.max(change.getStartAbsBounds().height(), in edgeExtendWindow()
322 final int targetSurfaceWidth = Math.max(change.getStartAbsBounds().width(), in edgeExtendWindow()
DTransitions.java652 change.getStartAbsBounds().left - root.getOffset().x, in setupAnimHierarchy()
653 change.getStartAbsBounds().top - root.getOffset().y); in setupAnimHierarchy()
DDefaultTransitionHandler.java795 ? change.getStartAbsBounds() : change.getEndAbsBounds(); in loadAnimation()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DPhysicalDisplaySwitchTransitionLauncherTest.java110 assertEquals(origBounds, mPlayer.mLastRequest.getDisplayChange().getStartAbsBounds()); in testDisplaySwitchAfterUnfoldToOpen_animationsEnabled_requestsTransition()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/splitscreen/
DSplitScreenTransitions.java215 t.setPosition(change.getSnapshot(), change.getStartAbsBounds().left, in playInternalAnimation()
216 change.getStartAbsBounds().top); in playInternalAnimation()
DStageCoordinator.java3234 getMainStagePosition(), finalMainChild.getStartAbsBounds()); in startPendingEnterAnimation()
3238 getSideStagePosition(), finalSideChild.getStartAbsBounds()); in startPendingEnterAnimation()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/
DPipTransition.java803 final Rect startBounds = new Rect(pipChange.getStartAbsBounds()); in startExpandAndRotationAnimation()
804 rotateBounds(startBounds, displayRotationChange.getStartAbsBounds(), rotateDelta); in startExpandAndRotationAnimation()
1004 final Rect currentBounds = pipChange.getStartAbsBounds(); in startEnterAnimation()
/frameworks/base/core/java/android/window/
DTransitionRequestInfo.java157 public @Nullable Rect getStartAbsBounds() { in getStartAbsBounds() method in TransitionRequestInfo.DisplayChange
DTransitionInfo.java898 public Rect getStartAbsBounds() { in getStartAbsBounds() method in TransitionInfo.Change
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/tv/
DTvPipTransition.java426 final Rect currentBounds = pipChange.getStartAbsBounds(); in startEnterAnimation()
/frameworks/base/services/core/java/com/android/server/wm/
DTransitionController.java663 final Rect startBounds = displayChange.getStartAbsBounds(); in setDisplaySyncMethod()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/transition/
DShellTransitionTests.java840 displayChange.getStartAbsBounds().set(0, 0, 1000, 2000); in testShouldRotateSeamlessly()