Searched refs:typesReady (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/services/core/java/com/android/server/wm/ |
D | InsetsPolicy.java | 435 int typesReady = 0; in startAnimation() local 445 typesReady |= InsetsState.toPublicType(type); in startAnimation() 448 controlAnimationUnchecked(typesReady, controls, show, callback); in startAnimation() 451 private void controlAnimationUnchecked(int typesReady, in controlAnimationUnchecked() argument 454 new InsetsPolicyAnimationControlListener(show, callback, typesReady); in controlAnimationUnchecked() 455 listener.mControlCallbacks.controlAnimationUnchecked(typesReady, controls, show); in controlAnimationUnchecked() 512 private void controlAnimationUnchecked(int typesReady, in controlAnimationUnchecked() argument 514 if (typesReady == 0) { in controlAnimationUnchecked() 525 null /* frame */, state, mListener, typesReady, this, in controlAnimationUnchecked() 532 () -> mListener.onReady(mAnimationControl, typesReady)); in controlAnimationUnchecked()
|
/frameworks/base/core/java/android/view/ |
D | InsetsController.java | 906 int typesReady = 0; in show() local 925 typesReady |= InsetsState.toPublicType(consumer.getType()); in show() 927 if (DEBUG) Log.d(TAG, "show typesReady: " + typesReady); in show() 928 applyAnimation(typesReady, true /* show */, fromIme); in show() 945 int typesReady = 0; in hide() local 956 typesReady |= InsetsState.toPublicType(consumer.getType()); in hide() 958 applyAnimation(typesReady, false /* show */, fromIme /* fromIme */); in hide() 1031 int typesReady = typesReadyPair.first; in controlAnimationUnchecked() local 1034 "controlAnimationUnchecked, typesReady: %s imeReady: %s", typesReady, imeReady)); in controlAnimationUnchecked() 1059 if (typesReady == 0) { in controlAnimationUnchecked() [all …]
|