Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
DQSIconViewImpl.java104 public void setIcon(State state, boolean allowAnimations) { in setIcon() argument
105 setIcon((ImageView) mIcon, state, allowAnimations); in setIcon() local
108 protected void updateIcon(ImageView iv, State state, boolean allowAnimations) { in updateIcon() argument
112 boolean shouldAnimate = allowAnimations && shouldAnimate(iv); in updateIcon()
152 protected void setIcon(ImageView iv, QSTile.State state, boolean allowAnimations) { in setIcon() argument
161 if (mTint != 0 && allowAnimations && shouldAnimate(iv)) { in setIcon()
162 animateGrayScale(mTint, color, iv, () -> updateIcon(iv, state, allowAnimations)); in setIcon()
172 updateIcon(iv, state, allowAnimations); in setIcon()
175 updateIcon(iv, state, allowAnimations); in setIcon()
DQSTileViewImpl.kt349 val allowAnimations = animationsEnabled() in <lambda>() constant
353 icon.setIcon(state, allowAnimations) in <lambda>()
407 if (allowAnimations) { in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DSignalTileView.java121 public void setIcon(State state, boolean allowAnimations) { in setIcon() argument
123 setIcon(mSignal, s, allowAnimations); in setIcon()
136 final boolean shouldAnimate = allowAnimations && isShown(); in setIcon()
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/
DQSIconView.java32 public abstract void setIcon(State state, boolean allowAnimations); in setIcon() argument