Home
last modified time | relevance | path

Searched refs:WindowInsetsAnimation (Results 1 – 25 of 30) sorted by relevance

12

/frameworks/base/tests/WindowInsetsTests/src/com/google/android/test/windowinsetstests/
DChatActivity.java20 import static android.view.WindowInsetsAnimation.Callback.DISPATCH_MODE_STOP;
38 import android.view.WindowInsetsAnimation;
39 import android.view.WindowInsetsAnimation.Callback;
169 public void onPrepare(WindowInsetsAnimation animation) { in onCreate()
175 @NonNull List<WindowInsetsAnimation> runningAnimations) { in onCreate()
181 public WindowInsetsAnimation.Bounds onStart(WindowInsetsAnimation animation, in onCreate()
182 WindowInsetsAnimation.Bounds bounds) { in onCreate()
188 public void onEnd(WindowInsetsAnimation animation) { in onCreate()
239 private WindowInsetsAnimation mInsetsAnimation;
245 void onPrepare(WindowInsetsAnimation animation) { in onPrepare()
[all …]
/frameworks/base/tests/UiBench/src/com/android/test/uibench/
DWindowInsetsControllerActivity.java19 import static android.view.WindowInsetsAnimation.Callback.DISPATCH_MODE_STOP;
24 import android.view.WindowInsetsAnimation;
44 new WindowInsetsAnimation.Callback(DISPATCH_MODE_STOP) { in onCreate()
48 @NonNull List<WindowInsetsAnimation> runningAnimations) { in onCreate()
/frameworks/base/core/java/android/view/
DWindowInsetsAnimation.java34 public final class WindowInsetsAnimation { class
55 public WindowInsetsAnimation( in WindowInsetsAnimation() method in WindowInsetsAnimation
384 public void onPrepare(@NonNull WindowInsetsAnimation animation) { in onPrepare()
406 @NonNull WindowInsetsAnimation animation, @NonNull Bounds bounds) { in onStart()
430 @NonNull List<WindowInsetsAnimation> runningAnimations); in onProgress()
438 public void onEnd(@NonNull WindowInsetsAnimation animation) { in onEnd()
DViewRootInsetsControllerHost.java75 public void dispatchWindowInsetsAnimationPrepare(@NonNull WindowInsetsAnimation animation) { in dispatchWindowInsetsAnimationPrepare()
83 public WindowInsetsAnimation.Bounds dispatchWindowInsetsAnimationStart( in dispatchWindowInsetsAnimationStart()
84 @NonNull WindowInsetsAnimation animation, in dispatchWindowInsetsAnimationStart()
85 @NonNull WindowInsetsAnimation.Bounds bounds) { in dispatchWindowInsetsAnimationStart()
95 @NonNull List<WindowInsetsAnimation> runningAnimations) { in dispatchWindowInsetsAnimationProgress()
101 for (WindowInsetsAnimation anim : runningAnimations) { in dispatchWindowInsetsAnimationProgress()
110 public void dispatchWindowInsetsAnimationEnd(@NonNull WindowInsetsAnimation animation) { in dispatchWindowInsetsAnimationEnd()
DInsetsAnimationControlCallbacks.java20 import android.view.WindowInsetsAnimation.Bounds;
40 WindowInsetsAnimation animation, Bounds bounds); in startAnimation()
DInsetsResizeAnimationRunner.java39 import android.view.WindowInsetsAnimation.Bounds;
53 private final WindowInsetsAnimation mAnimation;
66 mAnimation = new WindowInsetsAnimation(types, interpolator, duration); in InsetsResizeAnimationRunner()
87 public WindowInsetsAnimation getAnimation() { in getAnimation()
DInsetsAnimationThreadControlRunner.java35 import android.view.WindowInsetsAnimation.Bounds;
60 WindowInsetsAnimation animation, Bounds bounds) {
181 public WindowInsetsAnimation getAnimation() { in getAnimation()
DInsetsAnimationControlRunner.java65 WindowInsetsAnimation getAnimation(); in getAnimation()
DWindowInsetsAnimationController.java25 import android.view.WindowInsetsAnimation.Bounds;
DInsetsAnimationControlImpl.java65 import android.view.WindowInsetsAnimation.Bounds;
102 private final WindowInsetsAnimation mAnimation;
158 mAnimation = new WindowInsetsAnimation(mTypes, interpolator, in InsetsAnimationControlImpl()
375 public WindowInsetsAnimation getAnimation() { in getAnimation()
DInsetsController.java60 import android.view.WindowInsetsAnimation.Bounds;
100 void dispatchWindowInsetsAnimationPrepare(@NonNull WindowInsetsAnimation animation); in dispatchWindowInsetsAnimationPrepare()
102 @NonNull WindowInsetsAnimation animation, @NonNull Bounds bounds); in dispatchWindowInsetsAnimationStart()
104 @NonNull List<WindowInsetsAnimation> runningAnimations); in dispatchWindowInsetsAnimationProgress()
105 void dispatchWindowInsetsAnimationEnd(@NonNull WindowInsetsAnimation animation); in dispatchWindowInsetsAnimationEnd()
790 final List<WindowInsetsAnimation> runningAnimations = new ArrayList<>(); in InsetsController()
791 final List<WindowInsetsAnimation> finishedAnimations = new ArrayList<>(); in InsetsController()
819 for (WindowInsetsAnimation anim : runningAnimations) { in InsetsController()
2025 WindowInsetsAnimation animation, Bounds bounds) { in startAnimation()
2053 public void dispatchAnimationEnd(WindowInsetsAnimation animation) { in dispatchAnimationEnd()
DViewGroup.java19 import static android.view.WindowInsetsAnimation.Callback.DISPATCH_MODE_CONTINUE_ON_SUBTREE;
20 import static android.view.WindowInsetsAnimation.Callback.DISPATCH_MODE_STOP;
57 import android.view.WindowInsetsAnimation.Bounds;
58 import android.view.WindowInsetsAnimation.Callback.DispatchMode;
7504 @Nullable WindowInsetsAnimation.Callback callback) { in setWindowInsetsAnimationCallback()
7542 @NonNull WindowInsetsAnimation animation) { in dispatchWindowInsetsAnimationPrepare()
7569 @NonNull WindowInsetsAnimation animation, @NonNull Bounds bounds) { in dispatchWindowInsetsAnimationStart()
7584 @NonNull List<WindowInsetsAnimation> runningAnimations) { in dispatchWindowInsetsAnimationProgress()
7597 public void dispatchWindowInsetsAnimationEnd(@NonNull WindowInsetsAnimation animation) { in dispatchWindowInsetsAnimationEnd()
DView.java173 import android.view.WindowInsetsAnimation.Bounds;
5134 WindowInsetsAnimation.Callback mWindowInsetsAnimationCallback;
12617 @Nullable WindowInsetsAnimation.Callback callback) {
12638 @NonNull WindowInsetsAnimation animation) {
12654 @NonNull WindowInsetsAnimation animation, @NonNull Bounds bounds) {
12670 @NonNull List<WindowInsetsAnimation> runningAnimations) {
12684 public void dispatchWindowInsetsAnimationEnd(@NonNull WindowInsetsAnimation animation) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/display/ui/view/
DMirroringConfirmationDialogDelegate.kt24 import android.view.WindowInsetsAnimation in <lambda>()
108 object : WindowInsetsAnimation.Callback(DISPATCH_MODE_STOP) { in <lambda>()
112 override fun onEnd(animation: WindowInsetsAnimation) { in <lambda>()
118 animations: MutableList<WindowInsetsAnimation>, in <lambda>()
125 private fun allAnimationMasks(animations: List<WindowInsetsAnimation>): Int = in <lambda>()
/frameworks/base/tests/InputMethodStressTest/src/com/android/inputmethod/stresstest/
DImeStressTestUtil.java21 import static android.view.WindowInsetsAnimation.Callback.DISPATCH_MODE_STOP;
35 import android.view.WindowInsetsAnimation;
329 private final WindowInsetsAnimation.Callback mWindowInsetsAnimationCallback =
330 new WindowInsetsAnimation.Callback(DISPATCH_MODE_STOP) {
333 public WindowInsetsAnimation.Bounds onStart(
334 @NonNull WindowInsetsAnimation animation,
335 @NonNull WindowInsetsAnimation.Bounds bounds) {
341 public void onEnd(@NonNull WindowInsetsAnimation animation) {
350 @NonNull List<WindowInsetsAnimation> runningAnimations) {
/frameworks/base/apct-tests/perftests/inputmethod/src/android/inputmethod/
DImePerfTest.java23 import static android.view.WindowInsetsAnimation.Callback.DISPATCH_MODE_STOP;
45 import android.view.WindowInsetsAnimation;
463 new WindowInsetsAnimation.Callback(DISPATCH_MODE_STOP) { in setImeListener()
466 public WindowInsetsAnimation.Bounds onStart( in setImeListener()
467 @NonNull WindowInsetsAnimation animation, in setImeListener()
468 @NonNull WindowInsetsAnimation.Bounds bounds) { in setImeListener()
476 @NonNull List<WindowInsetsAnimation> runningAnimations) { in setImeListener()
481 public void onEnd(@NonNull WindowInsetsAnimation animation) { in setImeListener()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/display/ui/view/
DMirroringConfirmationDialogDelegateTest.kt26 import android.view.WindowInsetsAnimation
55 ArgumentCaptor.forClass(WindowInsetsAnimation.Callback::class.java)
160 listOf(WindowInsetsAnimation(type, Interpolators.INSTANT, 0)) in triggerInsetsChanged()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainer.java22 import static android.view.WindowInsetsAnimation.Callback.DISPATCH_MODE_STOP;
74 import android.view.WindowInsetsAnimation;
191 private final WindowInsetsAnimation.Callback mWindowInsetsAnimationCallback =
192 new WindowInsetsAnimation.Callback(DISPATCH_MODE_STOP) {
198 public void onPrepare(WindowInsetsAnimation animation) {
203 public WindowInsetsAnimation.Bounds onStart(WindowInsetsAnimation animation,
204 WindowInsetsAnimation.Bounds bounds) {
217 List<WindowInsetsAnimation> list) {
226 for (WindowInsetsAnimation animation : list) {
246 public void onEnd(WindowInsetsAnimation animation) {
/frameworks/base/services/core/java/com/android/server/wm/
DInsetsPolicy.java47 import android.view.WindowInsetsAnimation;
48 import android.view.WindowInsetsAnimation.Bounds;
775 @NonNull WindowInsetsAnimation animation) { } in dispatchWindowInsetsAnimationPrepare()
779 @NonNull WindowInsetsAnimation animation, in dispatchWindowInsetsAnimationStart()
787 @NonNull List<WindowInsetsAnimation> runningAnimations) { in dispatchWindowInsetsAnimationProgress()
793 @NonNull WindowInsetsAnimation animation) { } in dispatchWindowInsetsAnimationEnd()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputView.java19 import static android.view.WindowInsetsAnimation.Callback.DISPATCH_MODE_STOP;
51 import android.view.WindowInsetsAnimation;
281 new WindowInsetsAnimation.Callback(DISPATCH_MODE_STOP) { in onFinishInflate()
285 @NonNull List<WindowInsetsAnimation> runningAnimations) { in onFinishInflate()
289 public void onEnd(@NonNull WindowInsetsAnimation animation) { in onFinishInflate()
/frameworks/base/core/tests/coretests/src/android/view/
DInsetsControllerTest.java35 import static android.view.WindowInsetsAnimation.Callback.DISPATCH_MODE_STOP;
699 new WindowInsetsAnimation.Callback(DISPATCH_MODE_STOP) { in testResizeAnimation_withFlagAnimateResizing()
703 @NonNull List<WindowInsetsAnimation> runningAnimations) { in testResizeAnimation_withFlagAnimateResizing()
709 public void onEnd(@NonNull WindowInsetsAnimation animation) { in testResizeAnimation_withFlagAnimateResizing()
DImeBackAnimationControllerTest.java127 .setWindowInsetsAnimationCallback(mock(WindowInsetsAnimation.Callback.class)); in testAdjustResizeWithAppWindowInsetsListenerPlaysAnim()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutTest.java64 import android.view.WindowInsetsAnimation;
942 ArrayList<WindowInsetsAnimation> windowInsetsAnimations = new ArrayList<>(); in testWindowInsetAnimationProgress_updatesBottomInset()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java71 import android.view.WindowInsetsAnimation;
396 private final WindowInsetsAnimation.Callback mInsetsCallback =
397 new WindowInsetsAnimation.Callback(
398 WindowInsetsAnimation.Callback.DISPATCH_MODE_CONTINUE_ON_SUBTREE) {
401 public void onPrepare(WindowInsetsAnimation animation) {
407 List<WindowInsetsAnimation> list) {
413 public void onEnd(WindowInsetsAnimation animation) {
/frameworks/base/boot/
Dboot-image-profile.txt16303 HSPLandroid/view/InsetsAnimationControlImpl;->getAnimation()Landroid/view/WindowInsetsAnimation;
16331 …owInsetsAnimationControlListener;ILandroid/view/WindowInsetsAnimation;Landroid/view/WindowInsetsAn…
16334 …ndroid/view/InsetsAnimationThreadControlRunner;->getAnimation()Landroid/view/WindowInsetsAnimation;
16380 HSPLandroid/view/InsetsController;->dispatchAnimationEnd(Landroid/view/WindowInsetsAnimation;)V
17075 HSPLandroid/view/View;->dispatchWindowInsetsAnimationEnd(Landroid/view/WindowInsetsAnimation;)V
17769 HSPLandroid/view/ViewGroup;->dispatchWindowInsetsAnimationEnd(Landroid/view/WindowInsetsAnimation;)V
18251 …wRootInsetsControllerHost;->dispatchWindowInsetsAnimationEnd(Landroid/view/WindowInsetsAnimation;)V
18423 HSPLandroid/view/WindowInsetsAnimation$Bounds;-><init>(Landroid/graphics/Insets;Landroid/graphics/I…
18424 HSPLandroid/view/WindowInsetsAnimation$Callback;-><init>(I)V
18425 HSPLandroid/view/WindowInsetsAnimation;-><init>(ILandroid/view/animation/Interpolator;J)V
[all …]

12