Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DAnimatedImageView.java60 public void setAllowAnimation(boolean allowAnimation) { in setAllowAnimation() argument
61 if (mAllowAnimation != allowAnimation) { in setAllowAnimation()
62 mAllowAnimation = allowAnimation; in setAllowAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/icon/ui/viewbinder/
DStatusBarIconViewBinder.kt52 suspend fun bindAnimationsEnabled(view: StatusBarIconView, allowAnimation: Flow<Boolean>) { in <lambda>()
53 allowAnimation.collectTracingEach("SBIV#bindAnimationsEnabled", view::setAllowAnimation) in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/temporarydisplay/chipbar/
DChipbarCoordinatorTest.kt494 chipbarAnimator.allowAnimation = false in displayView_animationFailure_viewsStillBecomeVisible()
596 chipbarAnimator.allowAnimation = false in removeView_animationFailure_viewStillRemoved()
747 var allowAnimation: Boolean = true variable in com.android.systemui.temporarydisplay.chipbar.ChipbarCoordinatorTest.TestChipbarAnimator
750 if (!allowAnimation) { in animateViewIn()
757 if (!allowAnimation) { in animateViewOut()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DExpandHelper.java594 private void finishExpanding(boolean forceAbort, float velocity, boolean allowAnimation) { in finishExpanding() argument
618 if (targetHeight != currentHeight && mEnabled && allowAnimation) { in finishExpanding()
692 private void cancel(boolean allowAnimation) { in cancel() argument
693 finishExpanding(true /* forceAbort */, 0f /* velocity */, allowAnimation); in cancel()