Home
last modified time | relevance | path

Searched refs:BackAnimationController (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/back/
H A DBackAnimationController.java78 public class BackAnimationController implements RemoteCallable<BackAnimationController> { class
166 public BackAnimationController( in BackAnimationController() method in BackAnimationController
179 BackAnimationController( in BackAnimationController() method in BackAnimationController
300 mShellExecutor.execute(() -> BackAnimationController.this.setTriggerBack(triggerBack)); in setTriggerBack()
308 mShellExecutor.execute(() -> BackAnimationController.this.setSwipeThresholds( in setSwipeThresholds()
321 private BackAnimationController mController;
323 IBackAnimationImpl(BackAnimationController controller) { in IBackAnimationImpl()
799 BackAnimationController.this::onBackAnimationFinished)); in createAdapter()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/dagger/
H A DWMShellBaseModule.java40 import com.android.wm.shell.back.BackAnimationController;
306 Optional<BackAnimationController> backAnimationController) { in provideBackAnimation()
307 return backAnimationController.map(BackAnimationController::getBackAnimationImpl); in provideBackAnimation()
319 static Optional<BackAnimationController> provideBackAnimationController( in provideBackAnimationController()
327 if (BackAnimationController.IS_ENABLED) { in provideBackAnimationController()
329 new BackAnimationController(shellInit, shellController, shellExecutor, in provideBackAnimationController()
/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/back/
H A DBackAnimationControllerTest.java115 private BackAnimationController mController;
129 mController = new BackAnimationController(mShellInit, mShellController, in setUp()
278 mController = new BackAnimationController(shellInit, mShellController, in animationDisabledFromSettings()