Searched refs:reorderMode (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/core/java/com/android/server/wm/ |
D | RecentsAnimation.java | 214 private void finishAnimation(@RecentsAnimationController.ReorderMode int reorderMode, in finishAnimation() argument 219 + " reorderMode=" + reorderMode); in finishAnimation() 230 if (reorderMode != REORDER_KEEP_IN_PLACE) { in finishAnimation() 235 if (reorderMode == REORDER_MOVE_TO_TOP) { in finishAnimation() 247 mWindowManager.cleanupRecentsAnimation(reorderMode); in finishAnimation() 266 if (reorderMode == REORDER_MOVE_TO_TOP) { in finishAnimation() 288 } else if (reorderMode == REORDER_MOVE_TO_ORIGINAL_POSITION){ in finishAnimation() 343 public void onAnimationFinished(@RecentsAnimationController.ReorderMode int reorderMode, in onAnimationFinished() argument 346 finishAnimation(reorderMode, sendUserLeaveHint); in onAnimationFinished() 348 mService.mH.post(() -> finishAnimation(reorderMode, sendUserLeaveHint)); in onAnimationFinished()
|
D | RecentsAnimationController.java | 149 void onAnimationFinished(@ReorderMode int reorderMode, boolean runSychronously, in onAnimationFinished() argument 474 void cancelAnimation(@ReorderMode int reorderMode, String reason) { in cancelAnimation() argument 475 cancelAnimation(reorderMode, false /* runSynchronously */, false /*screenshot */, reason); in cancelAnimation() 478 void cancelAnimationSynchronously(@ReorderMode int reorderMode, String reason) { in cancelAnimationSynchronously() argument 479 cancelAnimation(reorderMode, true /* runSynchronously */, false /* screenshot */, reason); in cancelAnimationSynchronously() 487 private void cancelAnimation(@ReorderMode int reorderMode, boolean runSynchronously, in cancelAnimation() argument 502 screenshotRecentTask(task, reorderMode, runSynchronously); in cancelAnimation() 511 mCallbacks.onAnimationFinished(reorderMode, runSynchronously, in cancelAnimation() 548 void screenshotRecentTask(Task task, @ReorderMode int reorderMode, boolean runSynchronously) { in screenshotRecentTask() argument 557 mCallbacks.onAnimationFinished(reorderMode, runSynchronously, in screenshotRecentTask() [all …]
|
D | WindowManagerService.java | 2609 @RecentsAnimationController.ReorderMode int reorderMode, String reason) { in cancelRecentsAnimationSynchronously() 2613 mRecentsAnimationController.cancelAnimationSynchronously(reorderMode, reason); in cancelRecentsAnimationSynchronously() 2617 public void cleanupRecentsAnimation(@RecentsAnimationController.ReorderMode int reorderMode) { in cleanupRecentsAnimation() argument 2622 controller.cleanupAnimation(reorderMode); in cleanupRecentsAnimation()
|