/frameworks/base/core/tests/coretests/src/android/window/ |
D | WindowOnBackInvokedDispatcherTest.java | 289 callbackInfo1.getCallback().onBackStarted(mBackEvent); in propagatesTopCallback_samePriority() 292 verify(mCallback1, times(1)).onBackStarted(any(BackEvent.class)); in propagatesTopCallback_samePriority() 293 verify(mCallback2, never()).onBackStarted(any(BackEvent.class)); in propagatesTopCallback_samePriority() 296 callbackInfo2.getCallback().onBackStarted(mBackEvent); in propagatesTopCallback_samePriority() 299 verify(mCallback1, never()).onBackStarted(any(BackEvent.class)); in propagatesTopCallback_samePriority() 300 verify(mCallback2, times(1)).onBackStarted(any(BackEvent.class)); in propagatesTopCallback_samePriority() 313 callbackInfo.getCallback().onBackStarted(mBackEvent); in propagatesTopCallback_differentPriority() 316 verify(mCallback1).onBackStarted(any(BackEvent.class)); in propagatesTopCallback_differentPriority() 353 lastCallbackInfo.getCallback().onBackStarted(mBackEvent); in propagatesTopCallback_sameInstanceAddedTwice() 356 verify(mCallback2).onBackStarted(any(BackEvent.class)); in propagatesTopCallback_sameInstanceAddedTwice() [all …]
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/animation/back/ |
D | OnBackAnimationCallbackExtensionTest.kt | 36 onBackStarted = onBackStart, 50 onBackAnimationCallback.onBackStarted(backEvent) in onBackProgressed_shouldInvoke_onBackProgress() 74 onBackAnimationCallback.onBackStarted(backEvent) in onBackStarted_shouldInvoke_onBackStart()
|
/frameworks/base/core/tests/coretests/src/android/view/ |
D | ImeBackAnimationControllerTest.java | 133 mBackAnimationController.onBackStarted(new BackEvent(0f, 0f, 0f, EDGE_LEFT)); in testAdjustResizeWithAppWindowInsetsListenerPlaysAnim() 146 mBackAnimationController.onBackStarted(new BackEvent(0f, 0f, 0f, EDGE_LEFT)); in testAdjustResizeWithEdgeToEdgePlaysAnim() 157 mBackAnimationController.onBackStarted(new BackEvent(0f, 0f, 0f, EDGE_LEFT)); in testAdjustResizeWithoutAppWindowInsetsListenerNotPlayingAnim() 176 mBackAnimationController.onBackStarted(new BackEvent(0f, 0f, 0f, EDGE_LEFT)); in testMultiWindowModeNotPlayingAnim() 235 mBackAnimationController.onBackStarted(new BackEvent(0f, 0f, 0f, EDGE_LEFT)); in testNewGestureAfterCancelSeamlessTakeover() 309 mBackAnimationController.onBackStarted(new BackEvent(0f, 0f, 0f, EDGE_LEFT)); in startBackGesture()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/back/ |
D | FlingOnBackAnimationCallbackTest.kt | 53 callback.onBackStarted(backEvent) in testProgressInterpolation() 64 callback.onBackStarted(backEventOf(progress = 0f, frameTime = 0)) in testFling() 87 callback.onBackStarted(backEventOf(progress = 0f, frameTime = 0)) in testCallbackWithoutTimestampApi()
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/back/ |
D | OnBackAnimationCallbackExtension.kt | 40 onBackStarted: (BackEvent) -> Unit = {}, in onBackAnimationCallbackFrom() 50 onBackStarted(backEvent) in onBackStartedCompat()
|
D | FlingOnBackAnimationCallback.kt | 82 final override fun onBackStarted(backEvent: BackEvent) { in <lambda>() method in com.android.systemui.animation.back.FlingOnBackAnimationCallback
|
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/back/ |
D | BackAnimationControllerTest.java | 290 verify(mAnimatorCallback).onBackStarted(any(BackMotionEvent.class)); in backToHome_dispatchesEvents() 314 verify(mAnimatorCallback).onBackStarted(any(BackMotionEvent.class)); in backToHomeWithAnimationCallback_dispatchesEvents() 362 verify(mAnimatorCallback).onBackStarted(any()); in gestureQueued_WhenPreviousTransitionHasNotYetEnded() 402 verify(mAnimatorCallback).onBackStarted(any()); in queuedFinishedGesture_RunsAfterPreviousTransitionEnded() 428 verify(mAnimatorCallback).onBackStarted(any()); in gestureNotQueued_WhenPreviousGestureIsPostCommitCancelling() 454 verify(mAnimatorCallback).onBackStarted(any()); in acceptsGesture_transitionTimeout() 468 verify(mAnimatorCallback).onBackStarted(any()); in cancelBackInvokeWhenLostFocus() 518 verify(mAppCallback, never()).onBackStarted(any()); in animationNotDefined() 522 verify(mAnimatorCallback, never()).onBackStarted(any()); in animationNotDefined() 548 verify(mAppCallback, times(1)).onBackStarted(any()); in appCallback_receivesStartAndInvoke() [all …]
|
D | BackProgressAnimatorTest.java | 74 mProgressAnimator.onBackStarted(backEvent, this::onGestureProgress); in setUp()
|
D | CustomCrossActivityBackAnimationTest.kt | 210 customCrossActivityBackAnimation.runner.callback.onBackStarted(backMotionEventFrom(0f, 0f)) in startCustomAnimation()
|
/frameworks/base/core/java/android/window/ |
D | ImeOnBackInvokedDispatcher.java | 265 public void onBackStarted(@NonNull BackEvent backEvent) { in onBackStarted() method in ImeOnBackInvokedDispatcher.ImeOnBackInvokedCallback 271 mIOnBackInvokedCallback.onBackStarted( in onBackStarted() 369 public void onBackStarted(BackMotionEvent backMotionEvent) { in onBackStarted() method in ImeOnBackInvokedDispatcher.ImeOnBackInvokedCallbackWrapper 370 maybeRunOnAnimationCallback((animationCallback) -> animationCallback.onBackStarted( in onBackStarted()
|
D | IOnBackInvokedCallback.aidl | 37 void onBackStarted(in BackMotionEvent backMotionEvent); in onBackStarted() method
|
D | OnBackAnimationCallback.java | 49 default void onBackStarted(@NonNull BackEvent backEvent) {} in onBackStarted() method
|
D | WindowOnBackInvokedDispatcher.java | 531 public void onBackStarted(BackMotionEvent backEvent) { in onBackStarted() method in WindowOnBackInvokedDispatcher.OnBackInvokedCallbackWrapper 547 callback.onBackStarted(BackEvent.fromBackMotionEvent(backEvent)); in onBackStarted() 548 mProgressAnimator.onBackStarted(backEvent, callback::onBackProgressed); in onBackStarted()
|
D | BackProgressAnimator.java | 152 public void onBackStarted(BackMotionEvent event, ProgressCallback callback) { in onBackStarted() method in BackProgressAnimator
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/back/ |
D | CrossTaskBackAnimation.java | 402 public void onBackStarted(BackMotionEvent backEvent) { in onBackStarted() method in CrossTaskBackAnimation.Callback 410 mProgressAnimator.onBackStarted(backEvent, in onBackStarted()
|
D | CrossActivityBackAnimation.kt | 530 override fun onBackStarted(backMotionEvent: BackMotionEvent) { in <lambda>() method in com.android.wm.shell.back.Callback 537 progressAnimator.onBackStarted(backMotionEvent) { backEvent: BackEvent -> in <lambda>()
|
D | BackAnimationController.java | 689 callback.onBackStarted(backEvent); in dispatchOnBackStarted()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | StatusBarKeyguardViewManagerTest.java | 656 backCallback.onBackStarted(event); in testPredictiveBackCallback_noBackAnimationForFullScreenBouncer() 657 verify(mBouncerViewDelegateBackCallback, never()).onBackStarted(any()); in testPredictiveBackCallback_noBackAnimationForFullScreenBouncer() 673 backCallback.onBackStarted(event); in testPredictiveBackCallback_forwardsBackDispatches() 674 verify(mBouncerViewDelegateBackCallback).onBackStarted(eq(event)); in testPredictiveBackCallback_forwardsBackDispatches()
|
/frameworks/base/core/java/android/view/ |
D | ImeBackAnimationController.java | 78 public void onBackStarted(@NonNull BackEvent backEvent) { in onBackStarted() method in ImeBackAnimationController
|
D | ViewRootImpl.java | 7728 animationCallback.onBackStarted(backEvent); in doOnBackKeyEvent()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/keyguard/ |
D | KeyguardSecurityContainerTest.java | 430 backCallback.onBackStarted(createBackEvent(0, 0)); in testPlayBackAnimation()
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | BackNavigationControllerTests.java | 728 public void onBackStarted(BackMotionEvent backMotionEvent) { in createOnBackInvokedCallback()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBarKeyguardViewManager.java | 275 mPrimaryBouncerView.getDelegate().getBackCallback().onBackStarted(event);
|
/frameworks/base/core/api/ |
D | current.txt | 63015 method public default void onBackStarted(@NonNull android.window.BackEvent);
|