Home
last modified time | relevance | path

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

/frameworks/base/tests/InputMethodStressTest/src/com/android/inputmethod/stresstest/
DImeStressTestUtil.java329 private final WindowInsetsAnimation.Callback mWindowInsetsAnimationCallback = field in ImeStressTestUtil.TestActivity
508 mWindowInsetsAnimationCallback); in enableAnimationMonitoring()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainer.java191 private final WindowInsetsAnimation.Callback mWindowInsetsAnimationCallback = field in KeyguardSecurityContainer
351 mSecurityViewFlipper.setWindowInsetsAnimationCallback(mWindowInsetsAnimationCallback); in onResume()
/frameworks/base/core/java/android/view/
DView.java5134 WindowInsetsAnimation.Callback mWindowInsetsAnimationCallback; field in View.ListenerInfo
12618 getListenerInfo().mWindowInsetsAnimationCallback = callback;
12627 return getListenerInfo().mWindowInsetsAnimationCallback != null;
12639 if (mListenerInfo != null && mListenerInfo.mWindowInsetsAnimationCallback != null) {
12640 mListenerInfo.mWindowInsetsAnimationCallback.onPrepare(animation);
12655 if (mListenerInfo != null && mListenerInfo.mWindowInsetsAnimationCallback != null) {
12656 return mListenerInfo.mWindowInsetsAnimationCallback.onStart(animation, bounds);
12671 if (mListenerInfo != null && mListenerInfo.mWindowInsetsAnimationCallback != null) {
12672 return mListenerInfo.mWindowInsetsAnimationCallback.onProgress(insets,
12685 if (mListenerInfo != null && mListenerInfo.mWindowInsetsAnimationCallback != null) {
[all …]
DViewGroup.java7550 && getListenerInfo().mWindowInsetsAnimationCallback == null in dispatchWindowInsetsAnimationPrepare()