Home
last modified time | relevance | path

Searched refs:getEndAbsBounds (Results 1 – 25 of 26) sorted by relevance

12

/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/activityembedding/
DActivityEmbeddingAnimationRunner.java205 && !change.getStartAbsBounds().equals(change.getEndAbsBounds())) { in createAnimationAdapters()
250 openingWholeScreenBounds.union(change.getEndAbsBounds()); in createOpenCloseAnimationAdapters()
255 closingWholeScreenBounds.union(change.getEndAbsBounds()); in createOpenCloseAnimationAdapters()
317 return !closingChange.getStartAbsBounds().equals(closingChange.getEndAbsBounds()); in shouldUseSnapshotAnimationForClosingChange()
404 || change.getStartAbsBounds().equals(change.getEndAbsBounds())) { in createChangeAnimationAdapters()
427 parentBounds.union(boundsAnimationChange.getEndAbsBounds()); in createChangeAnimationAdapters()
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()
613 change.getEndAbsBounds().left - root.getOffset().x, in prepareForJumpCut()
[all …]
DActivityEmbeddingAnimationAdapter.java77 this(animation, change, change.getLeash(), change.getEndAbsBounds(), root); in ActivityEmbeddingAnimationAdapter()
95 final Rect endBounds = change.getEndAbsBounds(); in ActivityEmbeddingAnimationAdapter()
115 mContentBounds.set(change.getEndAbsBounds()); in ActivityEmbeddingAnimationAdapter()
197 super(animation, change, snapshotLeash, change.getEndAbsBounds(), root); in SnapshotAdapter()
DActivityEmbeddingController.java192 nonClosingEmbeddedArea.union(change.getEndAbsBounds()); in handleNonEmbeddedChanges()
202 && !nonClosingEmbeddedArea.contains(change.getEndAbsBounds())) { in handleNonEmbeddedChanges()
DActivityEmbeddingAnimationSpec.java97 final Rect bounds = change.getEndAbsBounds(); in createChangeBoundsOpenAnimation()
159 final Rect endBounds = change.getEndAbsBounds(); in createChangeBoundsChangeAnimations()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/unfold/
DUnfoldTransitionHandler.java232 if (displayChange.getStartAbsBounds() == null || displayChange.getEndAbsBounds() == null) { in isUnfoldDisplayChange()
238 displayChange.getEndAbsBounds().width() * displayChange.getEndAbsBounds().height(); in isUnfoldDisplayChange()
261 if (change.getEndAbsBounds() == null || change.getStartAbsBounds() == null) { in shouldPlayUnfoldAnimation()
266 change.getEndAbsBounds().width() * change.getEndAbsBounds().height(); in shouldPlayUnfoldAnimation()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/transition/
DCounterRotatorHelper.java50 final Rect displayBounds = displayRotationChange.getEndAbsBounds(); in handleClosingChanges()
91 if (mLastRotationDelta == 0) return change.getEndAbsBounds(); in getEndBoundsInStartRotation()
92 final Rect rotatedBounds = new Rect(change.getEndAbsBounds()); in getEndBoundsInStartRotation()
DDefaultTransitionHandler.java381 if (!change.getEndAbsBounds().equals( in startAnimation()
382 info.getChange(change.getParent()).getEndAbsBounds())) { in startAnimation()
384 change.getEndAbsBounds().width(), in startAnimation()
385 change.getEndAbsBounds().height()); in startAnimation()
400 change.getEndAbsBounds().left - info.getRoot(rootIdx).getOffset().x, in startAnimation()
401 change.getEndAbsBounds().top - info.getRoot(rootIdx).getOffset().y); in startAnimation()
409 change.getEndAbsBounds().width(), change.getEndAbsBounds().height()); in startAnimation()
504 : new Rect(change.getEndAbsBounds()); in startAnimation()
509 change.getEndAbsBounds().left - animRoot.getOffset().x, in startAnimation()
510 change.getEndAbsBounds().top - animRoot.getOffset().y); in startAnimation()
[all …]
DScreenRotationAnimation.java124 mEndWidth = change.getEndAbsBounds().width(); in ScreenRotationAnimation()
125 mEndHeight = change.getEndAbsBounds().height(); in ScreenRotationAnimation()
DTransitionAnimationHelper.java321 change.getEndAbsBounds().height()); in edgeExtendWindow()
323 change.getEndAbsBounds().width()); in edgeExtendWindow()
DTransitions.java543 t.setWindowCrop(leash, change.getEndAbsBounds().width(), in setupStartState()
544 change.getEndAbsBounds().height()); in setupStartState()
554 t.setWindowCrop(leash, change.getEndAbsBounds().width(), in setupStartState()
555 change.getEndAbsBounds().height()); in setupStartState()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/splitscreen/
DSplitScreenTransitions.java180 t.setPosition(leash, change.getEndAbsBounds().left, change.getEndAbsBounds().top); in playInternalAnimation()
181 t.setWindowCrop(leash, change.getEndAbsBounds().width(), in playInternalAnimation()
182 change.getEndAbsBounds().height()); in playInternalAnimation()
184 t.setPosition(leash, change.getEndAbsBounds().left, change.getEndAbsBounds().top); in playInternalAnimation()
280 startTransaction.setPosition(leash, change.getEndAbsBounds().left, in playResizeAnimation()
281 change.getEndAbsBounds().top); in playResizeAnimation()
282 startTransaction.setWindowCrop(leash, change.getEndAbsBounds().width(), in playResizeAnimation()
283 change.getEndAbsBounds().height()); in playResizeAnimation()
/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()
308 Rect localBounds = new Rect(change.getEndAbsBounds()); in newTarget()
324 new Rect(change.getEndAbsBounds()), in newTarget()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip2/phone/
DPipTransition.java264 startTransaction.setWindowCrop(pipLeash, pipChange.getEndAbsBounds().width(), in startResizeAnimation()
265 pipChange.getEndAbsBounds().height()); in startResizeAnimation()
274 extra.putParcelable(PIP_DESTINATION_BOUNDS, pipChange.getEndAbsBounds()); in startResizeAnimation()
300 Rect destinationBounds = pipChange.getEndAbsBounds(); in handleSwipePipToHomeTransition()
389 Rect destinationBounds = pipChange.getEndAbsBounds(); in startAlphaTypeEnterAnimation()
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DRemoteAnimationRunnerCompat.java115 displayW = change.getEndAbsBounds().width(); in wrap()
116 displayH = change.getEndAbsBounds().height(); in wrap()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DPhysicalDisplaySwitchTransitionLauncherTest.java112 mPlayer.mLastRequest.getDisplayChange().getEndAbsBounds()); in testDisplaySwitchAfterUnfoldToOpen_animationsEnabled_requestsTransition()
DTransitionTests.java1095 assertEquals(app.getParent().getBounds(), changeOfActivity.getEndAbsBounds()); in testTransitionBounds()
1106 assertEquals(task.getBounds(), changeOfTask.getEndAbsBounds()); in testTransitionBounds()
1830 assertEquals(embeddedTf.getBounds(), info.getChanges().get(0).getEndAbsBounds()); in testFlagFillsTask_embeddingNotFillingTask()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/desktopmode/
DEnterDesktopTaskTransitionHandler.java162 change.getStartAbsBounds(), change.getEndAbsBounds()); in animateMoveToDesktop()
DExitDesktopTaskTransitionHandler.java148 final Rect endBounds = change.getEndAbsBounds(); in startChangeTransition()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/
DPipTransition.java705 final boolean toFullscreen = pipChange.getEndAbsBounds().equals( in startExitAnimation()
755 final Rect destinationBounds = new Rect(pipChange.getEndAbsBounds()); in startExitAnimation()
805 final Rect endBounds = new Rect(pipChange.getEndAbsBounds()); in startExpandAndRotationAnimation()
1196 final Rect endBounds = change.getEndAbsBounds(); in startExitToSplitAnimation()
1214 final Rect bounds = prevPipTaskChange.getEndAbsBounds(); in resetPrevPip()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/
DVeiledResizeTaskPositioner.java182 final Rect endBounds = change.getEndAbsBounds(); in startAnimation()
DFluidResizeTaskPositioner.java181 final Rect endBounds = change.getEndAbsBounds(); in startAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardService.java165 float displayW = parent.getEndAbsBounds().width(); in wrap()
166 float displayH = parent.getEndAbsBounds().height(); in wrap()
/frameworks/base/core/java/android/window/
DTransitionRequestInfo.java162 public @Nullable Rect getEndAbsBounds() { in getEndAbsBounds() method in TransitionRequestInfo.DisplayChange
DTransitionInfo.java907 public Rect getEndAbsBounds() { in getEndAbsBounds() method in TransitionInfo.Change
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/tv/
DTvPipTransition.java249 final Rect destinationBounds = new Rect(pipChange.getEndAbsBounds()); in startAnimation()

12