Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardSecurityContainer.java118 private final WindowInsetsAnimation.Callback mWindowInsetsAnimationCallback = field in KeyguardSecurityContainer
259 mSecurityViewFlipper.setWindowInsetsAnimationCallback(mWindowInsetsAnimationCallback); in onResume()
/aosp12/frameworks/base/core/java/android/view/
H A DView.java4733 WindowInsetsAnimation.Callback mWindowInsetsAnimationCallback; field in View.ListenerInfo
11528 getListenerInfo().mWindowInsetsAnimationCallback = callback; in setWindowInsetsAnimationCallback()
11537 return getListenerInfo().mWindowInsetsAnimationCallback != null; in hasWindowInsetsAnimationCallback()
11549 if (mListenerInfo != null && mListenerInfo.mWindowInsetsAnimationCallback != null) { in dispatchWindowInsetsAnimationPrepare()
11550 mListenerInfo.mWindowInsetsAnimationCallback.onPrepare(animation); in dispatchWindowInsetsAnimationPrepare()
11565 if (mListenerInfo != null && mListenerInfo.mWindowInsetsAnimationCallback != null) { in dispatchWindowInsetsAnimationStart()
11566 return mListenerInfo.mWindowInsetsAnimationCallback.onStart(animation, bounds); in dispatchWindowInsetsAnimationStart()
11581 if (mListenerInfo != null && mListenerInfo.mWindowInsetsAnimationCallback != null) { in dispatchWindowInsetsAnimationProgress()
11582 return mListenerInfo.mWindowInsetsAnimationCallback.onProgress(insets, in dispatchWindowInsetsAnimationProgress()
11595 if (mListenerInfo != null && mListenerInfo.mWindowInsetsAnimationCallback != null) { in dispatchWindowInsetsAnimationEnd()
[all …]
H A DViewGroup.java7421 && getListenerInfo().mWindowInsetsAnimationCallback == null in dispatchWindowInsetsAnimationPrepare()