Home
last modified time | relevance | path

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

/aosp14/frameworks/base/tests/InputMethodStressTest/src/com/android/inputmethod/stresstest/
H A DImeStressTestUtil.java329 private final WindowInsetsAnimation.Callback mWindowInsetsAnimationCallback = field in ImeStressTestUtil.TestActivity
507 mWindowInsetsAnimationCallback); in enableAnimationMonitoring()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardSecurityContainer.java190 private final WindowInsetsAnimation.Callback mWindowInsetsAnimationCallback = field in KeyguardSecurityContainer
348 mSecurityViewFlipper.setWindowInsetsAnimationCallback(mWindowInsetsAnimationCallback); in onResume()
/aosp14/frameworks/base/core/java/android/view/
H A DView.java4872 WindowInsetsAnimation.Callback mWindowInsetsAnimationCallback; field in View.ListenerInfo
11961 getListenerInfo().mWindowInsetsAnimationCallback = callback; in setWindowInsetsAnimationCallback()
11970 return getListenerInfo().mWindowInsetsAnimationCallback != null; in hasWindowInsetsAnimationCallback()
11982 if (mListenerInfo != null && mListenerInfo.mWindowInsetsAnimationCallback != null) { in dispatchWindowInsetsAnimationPrepare()
11983 mListenerInfo.mWindowInsetsAnimationCallback.onPrepare(animation); in dispatchWindowInsetsAnimationPrepare()
11998 if (mListenerInfo != null && mListenerInfo.mWindowInsetsAnimationCallback != null) { in dispatchWindowInsetsAnimationStart()
11999 return mListenerInfo.mWindowInsetsAnimationCallback.onStart(animation, bounds); in dispatchWindowInsetsAnimationStart()
12014 if (mListenerInfo != null && mListenerInfo.mWindowInsetsAnimationCallback != null) { in dispatchWindowInsetsAnimationProgress()
12015 return mListenerInfo.mWindowInsetsAnimationCallback.onProgress(insets, in dispatchWindowInsetsAnimationProgress()
12028 if (mListenerInfo != null && mListenerInfo.mWindowInsetsAnimationCallback != null) { in dispatchWindowInsetsAnimationEnd()
[all …]
H A DViewGroup.java7572 && getListenerInfo().mWindowInsetsAnimationCallback == null in dispatchWindowInsetsAnimationPrepare()