Searched refs:reorderMode (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/core/java/com/android/server/wm/ |
D | RecentsAnimation.java | 268 private void finishAnimation(@RecentsAnimationController.ReorderMode int reorderMode, in finishAnimation() argument 273 + " reorderMode=" + reorderMode); in finishAnimation() 284 if (reorderMode != REORDER_KEEP_IN_PLACE) { in finishAnimation() 289 if (reorderMode == REORDER_MOVE_TO_TOP) { in finishAnimation() 302 mWindowManager.cleanupRecentsAnimation(reorderMode); in finishAnimation() 321 if (reorderMode == REORDER_MOVE_TO_TOP) { in finishAnimation() 343 } else if (reorderMode == REORDER_MOVE_TO_ORIGINAL_POSITION){ in finishAnimation() 398 public void onAnimationFinished(@RecentsAnimationController.ReorderMode int reorderMode, in onAnimationFinished() argument 401 finishAnimation(reorderMode, sendUserLeaveHint); in onAnimationFinished() 403 mService.mH.post(() -> finishAnimation(reorderMode, sendUserLeaveHint)); in onAnimationFinished()
|
D | RecentsAnimationController.java | 170 void onAnimationFinished(@ReorderMode int reorderMode, boolean runSychronously, in onAnimationFinished() argument 499 void cancelAnimation(@ReorderMode int reorderMode, String reason) { in cancelAnimation() argument 500 cancelAnimation(reorderMode, false /* runSynchronously */, false /*screenshot */, reason); in cancelAnimation() 503 void cancelAnimationSynchronously(@ReorderMode int reorderMode, String reason) { in cancelAnimationSynchronously() argument 504 cancelAnimation(reorderMode, true /* runSynchronously */, false /* screenshot */, reason); in cancelAnimationSynchronously() 511 private void cancelAnimation(@ReorderMode int reorderMode, boolean runSynchronously, in cancelAnimation() argument 527 screenshotRecentTask(task, reorderMode, runSynchronously); in cancelAnimation() 542 mCallbacks.onAnimationFinished(reorderMode, runSynchronously, in cancelAnimation() 589 void screenshotRecentTask(Task task, @ReorderMode int reorderMode, boolean runSynchronously) { in screenshotRecentTask() argument 598 mCallbacks.onAnimationFinished(reorderMode, runSynchronously, in screenshotRecentTask() [all …]
|
D | WindowManagerService.java | 2624 @RecentsAnimationController.ReorderMode int reorderMode, String reason) { in cancelRecentsAnimationSynchronously() 2628 mRecentsAnimationController.cancelAnimationSynchronously(reorderMode, reason); in cancelRecentsAnimationSynchronously() 2632 public void cleanupRecentsAnimation(@RecentsAnimationController.ReorderMode int reorderMode) { in cleanupRecentsAnimation() argument 2637 controller.cleanupAnimation(reorderMode); in cleanupRecentsAnimation()
|