Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
H A DQSIconViewImpl.java111 public void setIcon(State state, boolean allowAnimations) { in setIcon() argument
112 setIcon((ImageView) mIcon, state, allowAnimations); in setIcon()
115 protected void updateIcon(ImageView iv, State state, boolean allowAnimations) { in updateIcon() argument
119 boolean shouldAnimate = allowAnimations && shouldAnimate(iv); in updateIcon()
172 protected void setIcon(ImageView iv, QSTile.State state, boolean allowAnimations) { in setIcon() argument
177 if (mTint != 0 && allowAnimations && shouldAnimate(iv)) { in setIcon()
178 animateGrayScale(mTint, color, iv, () -> updateIcon(iv, state, allowAnimations)); in setIcon()
186 updateIcon(iv, state, allowAnimations); in setIcon()
189 updateIcon(iv, state, allowAnimations); in setIcon()
H A DQSTileViewImpl.kt446 val allowAnimations = animationsEnabled() regex
449 icon.setIcon(state, allowAnimations)
511 if (allowAnimations) {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A 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()
/aosp14/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/qs/
H A DQSIconView.java32 public abstract void setIcon(State state, boolean allowAnimations); in setIcon() argument