Searched refs:getChildTag (Results 1 – 5 of 5) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | ViewState.java | 363 return getChildTag(view, tag) != null; in isAnimating() 367 return getChildTag(view, property.getAnimatorTag()) != null; in isAnimating() 439 Float previousEndValue = getChildTag(child, TAG_END_ALPHA); in startAlphaAnimation() 729 public static <T> T getChildTag(View child, int tag) { in getChildTag() method in ViewState 734 Animator previousAnimator = getChildTag(child, animatorTag); in abortAnimation() 772 return getChildTag(view, TAG_END_TRANSLATION_X); in getFinalTranslationX() 788 return getChildTag(view, TAG_END_TRANSLATION_Y); in getFinalTranslationY() 804 return getChildTag(view, TAG_END_TRANSLATION_Z); in getFinalTranslationZ() 817 animator = getChildTag(view, TAG_ANIMATOR_TRANSLATION_Y); in cancelAnimations() 821 animator = getChildTag(view, TAG_ANIMATOR_TRANSLATION_Z); in cancelAnimations() [all …]
|
H A D | ExpandableViewState.java | 242 Integer previousStartValue = getChildTag(child, TAG_START_HEIGHT); in startHeightAnimation() 243 Integer previousEndValue = getChildTag(child, TAG_END_HEIGHT); in startHeightAnimation() 248 ValueAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_HEIGHT); in startHeightAnimation() 325 Integer previousStartValue = getChildTag(child, in startClipAnimation() 327 Integer previousEndValue = getChildTag(child, in startClipAnimation() 333 ValueAnimator previousAnimator = getChildTag(child, in startClipAnimation() 405 ValueAnimator heightAnimator = getChildTag(view, TAG_ANIMATOR_HEIGHT); in getFinalActualHeight() 409 return getChildTag(view, TAG_END_HEIGHT); in getFinalActualHeight() 416 Animator animator = getChildTag(view, TAG_ANIMATOR_HEIGHT); in cancelAnimations() 420 animator = getChildTag(view, TAG_ANIMATOR_TOP_INSET); in cancelAnimations()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
H A D | PropertyAnimatorTest.java | 129 assertEquals(ViewState.getChildTag(mView, mProperty.getAnimationEndTag()), in testEndValueUpdated() 139 assertEquals(ViewState.getChildTag(mView, mProperty.getAnimationStartTag()), in testStartTagUpdated() 158 assertEquals(ViewState.getChildTag(mView, mProperty.getAnimationEndTag()), in testAnimationToRightValueUpdated() 171 assertEquals(ViewState.getChildTag(mView, mProperty.getAnimationEndTag()), in testAnimationToRightValueUpdateAnimated() 183 assertEquals(ViewState.getChildTag(mView, mProperty.getAnimationStartTag()), in testStartTagShiftedWhenChanging() 193 ValueAnimator animator = ViewState.getChildTag(mView, mProperty.getAnimatorTag()); in testUsingDuration() 204 ValueAnimator animator = ViewState.getChildTag(mView, mProperty.getAnimatorTag()); in testUsingDelay() 215 ValueAnimator animator = ViewState.getChildTag(mView, mProperty.getAnimatorTag()); in testUsingInterpolator() 226 ValueAnimator animator = ViewState.getChildTag(mView, mProperty.getAnimatorTag()); in testUsingListener()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
H A D | PropertyAnimator.java | 48 ValueAnimator previousAnimator = ViewState.getChildTag(view, animatorTag); in setProperty() 63 Float previousStartValue = ViewState.getChildTag(view, animationStartTag); in startAnimation() 64 Float previousEndValue = ViewState.getChildTag(view, animationEndTag); in startAnimation() 69 ValueAnimator previousAnimator = ViewState.getChildTag(view, animatorTag); in startAnimation()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | ScrimController.java | 1391 ValueAnimator previousAnimator = ViewState.getChildTag(scrim, TAG_KEY_ANIM); in updateScrim()
|