Home
last modified time | relevance | path

Searched refs:TouchAnimator (Results 1 – 6 of 6) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/
H A DTouchAnimatorTest.java25 import com.android.systemui.qs.TouchAnimator.Listener;
47 TouchAnimator animator = new TouchAnimator.Builder() in testSetValueFloat()
63 TouchAnimator animator = new TouchAnimator.Builder() in testSetValueFloat_threeValues()
85 TouchAnimator animator = new TouchAnimator.Builder() in testSetValueInt()
101 TouchAnimator animator = new TouchAnimator.Builder() in testStartDelay()
121 TouchAnimator animator = new TouchAnimator.Builder() in testEndDelay()
141 TouchAnimator animator = new TouchAnimator.Builder() in testOnAnimationAtStartCallback()
166 TouchAnimator animator = new TouchAnimator.Builder() in testOnAnimationAtEndCallback()
191 TouchAnimator animator = new TouchAnimator.Builder() in testOnAnimationStartedCallback()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSAnimator.java34 import com.android.systemui.qs.TouchAnimator.Builder;
35 import com.android.systemui.qs.TouchAnimator.Listener;
90 private TouchAnimator mFirstPageAnimator;
91 private TouchAnimator mFirstPageDelayedAnimator;
92 private TouchAnimator mTranslationXAnimator;
93 private TouchAnimator mTranslationYAnimator;
94 private TouchAnimator mNonfirstPageAnimator;
97 private TouchAnimator mAllPagesDelayedAnimator;
98 private TouchAnimator mBrightnessAnimator;
99 private TouchAnimator mQQSFooterActionsAnimator;
[all …]
H A DTouchAnimator.java33 public class TouchAnimator { class
44 private TouchAnimator(Object[] targets, KeyframeSet[] keyframeSets, in TouchAnimator() method in TouchAnimator
79 private static final FloatProperty<TouchAnimator> POSITION =
80 new FloatProperty<TouchAnimator>("position") {
82 public void setValue(TouchAnimator touchAnimator, float value) {
87 public Float get(TouchAnimator touchAnimator) {
170 if (target instanceof TouchAnimator && "position".equals(property)) { in getProperty()
196 public TouchAnimator build() { in build()
197 return new TouchAnimator(mTargets.toArray(new Object[mTargets.size()]), in build()
H A DQSFooterView.java51 protected TouchAnimator mFooterAnimator;
126 private TouchAnimator createFooterAnimator() { in createFooterAnimator()
127 TouchAnimator.Builder builder = new TouchAnimator.Builder() in createFooterAnimator()
H A DQuickStatusBarHeader.java59 private TouchAnimator mAlphaAnimator;
60 private TouchAnimator mTranslationAnimator;
61 private TouchAnimator mIconsAlphaAnimator;
62 private TouchAnimator mIconsAlphaAnimatorFixed;
156 mIconsAlphaAnimatorFixed = new TouchAnimator.Builder() in onFinishInflate()
321 mTranslationAnimator = new TouchAnimator.Builder() in updateAnimators()
334 TouchAnimator.Builder builder = new TouchAnimator.Builder() in updateAlphaAnimator()
340 .setListener(new TouchAnimator.ListenerAdapter() { in updateAlphaAnimator()
H A DFooterActionsView.kt48 private var settingsCogAnimator: TouchAnimator? = null
77 settingsCogAnimator = TouchAnimator.Builder()