/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/animation/ |
H A D | StackAnimationControllerTest.java | 93 waitForPropertyAnimations(DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y); in testMoveFirstBubbleWithStackFollowing() 108 waitForPropertyAnimations(DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y); in testMoveFirstBubbleWithStackFollowing() 126 DynamicAnimation.TRANSLATION_Y, in testFlingSideways() 136 DynamicAnimation.TRANSLATION_Y); in testFlingSideways() 140 DynamicAnimation.TRANSLATION_Y); in testFlingSideways() 161 DynamicAnimation.TRANSLATION_Y, in testFlingUpFromBelowBottomCenter() 169 DynamicAnimation.TRANSLATION_Y); in testFlingUpFromBelowBottomCenter() 182 DynamicAnimation.TRANSLATION_Y); in testChildAdded() 194 DynamicAnimation.TRANSLATION_Y, in testChildAdded() 234 DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y); in testRestoredAtRestingPosition() [all …]
|
H A D | ExpandedAnimationControllerTest.java | 102 waitForPropertyAnimations(DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y); in testExpansionAndCollapse() 109 waitForPropertyAnimations(DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y); in testExpansionAndCollapse() 123 waitForPropertyAnimations(DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y); in testOnChildAdded() 136 waitForPropertyAnimations(DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y); in testOnChildRemoved() 149 waitForPropertyAnimations(DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y); in expand()
|
H A D | PhysicsAnimationLayoutTest.java | 72 DynamicAnimation.TRANSLATION_Y)); in setUp() 165 mTestableController.setEndActionForProperty(yEndAction, DynamicAnimation.TRANSLATION_Y); in testSetEndActions() 285 DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y)); in testArePropertiesAnimating() 295 assertFalse(mLayout.arePropertiesAnimating(DynamicAnimation.TRANSLATION_Y)); in testArePropertiesAnimating() 300 DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y)); in testArePropertiesAnimating() 349 waitForPropertyAnimations(DynamicAnimation.TRANSLATION_Y); 390 DynamicAnimation.TRANSLATION_Y);
|
/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/animation/ |
H A D | PhysicsAnimatorTest.kt | 122 .spring(DynamicAnimation.TRANSLATION_Y, 50f, springConfig) 137 .fling(DynamicAnimation.TRANSLATION_Y, 500f, flingConfig) 159 .spring(DynamicAnimation.TRANSLATION_Y, 500f, springConfig) 170 assertTrue(animator.isPropertyAnimating(DynamicAnimation.TRANSLATION_Y)) 188 PhysicsAnimatorTestUtils.blockUntilAnimationsEnd(animator, DynamicAnimation.TRANSLATION_Y) 198 DynamicAnimation.TRANSLATION_Y, 214 .spring(DynamicAnimation.TRANSLATION_Y, 50f, springConfig) 337 .spring(DynamicAnimation.TRANSLATION_Y, 4000f, springConfig) 382 .onAnimationEnd(testView, DynamicAnimation.TRANSLATION_Y, 433 .fling(DynamicAnimation.TRANSLATION_Y, 10f, flingConfig) [all …]
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/animation/ |
H A D | PhysicsAnimationLayout.java | 411 || property.equals(DynamicAnimation.TRANSLATION_Y); 485 } else if (property.equals(DynamicAnimation.TRANSLATION_Y)) { 588 } else if (property.equals(DynamicAnimation.TRANSLATION_Y)) { 771 mInitialPropertyValues.put(DynamicAnimation.TRANSLATION_Y, from); 836 mAnimatedProperties.remove(DynamicAnimation.TRANSLATION_Y); 838 mInitialPropertyValues.remove(DynamicAnimation.TRANSLATION_Y); 840 mEndActionForProperty.remove(DynamicAnimation.TRANSLATION_Y); 952 mEndActionsForProperty.put(DynamicAnimation.TRANSLATION_Y, 997 animatedProperties.add(DynamicAnimation.TRANSLATION_Y); 1100 DynamicAnimation.TRANSLATION_Y, mView); [all …]
|
H A D | StackAnimationController.java | 319 springFirstBubbleWithStackFollowing(DynamicAnimation.TRANSLATION_Y, in springStack() 401 DynamicAnimation.TRANSLATION_Y, in flingStackThenSpringToEdge() 507 cancelStackPositionAnimation(DynamicAnimation.TRANSLATION_Y); 510 removeEndActionForProperty(DynamicAnimation.TRANSLATION_Y); 540 DynamicAnimation.TRANSLATION_Y, 577 DynamicAnimation.TRANSLATION_Y); 668 DynamicAnimation.TRANSLATION_Y, in getAnimatedProperties() 677 || property.equals(DynamicAnimation.TRANSLATION_Y)) { in getNextAnimationInChain() 687 if (property.equals(DynamicAnimation.TRANSLATION_Y)) { in getOffsetForChainedPropertyAnimation() 892 } else if (property.equals(DynamicAnimation.TRANSLATION_Y)) { in moveFirstBubbleWithStackFollowing() [all …]
|
H A D | ExpandedAnimationController.java | 344 DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y) { in prepareForBubbleDrag() 390 bubbleView, DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y)) { in dragBubbleOut() 490 DynamicAnimation.TRANSLATION_Y, in getAnimatedProperties()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | TapAgainView.java | 69 ObjectAnimator.ofFloat(this, View.TRANSLATION_Y, yTranslation, 0); in animateIn() 94 ObjectAnimator.ofFloat(this, View.TRANSLATION_Y, 0, -yTranslation); in animateOut()
|
H A D | KeyguardIndicationTextView.java | 214 ObjectAnimator.ofFloat(this, View.TRANSLATION_Y, 0, -getYTranslationPixels()); in getOutAnimator() 257 ObjectAnimator.ofFloat(this, View.TRANSLATION_Y, getYTranslationPixels(), 0); in getInAnimator()
|
H A D | NotificationIconContainer.java | 711 if (property == View.TRANSLATION_Y && iconAppearAmount == 0.0f in IconState() 767 sTempProperties.setCustomInterpolator(View.TRANSLATION_Y, interpolator); in applyToView()
|
/aosp14/frameworks/base/core/java/android/view/ |
H A D | ViewPropertyAnimator.java | 142 static final int TRANSLATION_Y = 0x0002; field in ViewPropertyAnimator 154 private static final int TRANSFORM_MASK = TRANSLATION_X | TRANSLATION_Y | TRANSLATION_Z | 630 animateProperty(TRANSLATION_Y, value); in translationY() 643 animatePropertyBy(TRANSLATION_Y, value); in translationYBy() 984 case TRANSLATION_Y: in setValue() 1032 case TRANSLATION_Y: in getValue()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/bubbles/ |
H A D | DismissView.kt | 148 .spring(DynamicAnimation.TRANSLATION_Y, 0f, spring) 165 .spring(DynamicAnimation.TRANSLATION_Y, height.toFloat(),
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/ |
H A D | MenuAnimationController.java | 103 DynamicAnimation.TRANSLATION_Y.setValue(mMenuView, positionY); in moveToPositionY() 188 flingThenSpringMenuWith(DynamicAnimation.TRANSLATION_Y, in flingMenuThenSpringToEdge() 327 cancelAnimation(DynamicAnimation.TRANSLATION_Y); in cancelAnimations()
|
H A D | DismissAnimationController.java | 85 DynamicAnimation.TRANSLATION_Y)) { in DismissAnimationController()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
H A D | KeyguardClockSwitch.java | 370 ObjectAnimator.ofFloat(out, TRANSLATION_Y, clockOutYTranslation)); in updateClockViews() 386 ObjectAnimator.ofFloat(in, TRANSLATION_Y, clockInYTranslation)); in updateClockViews() 404 ObjectAnimator.ofFloat(mSmallClockFrame, TRANSLATION_Y, statusAreaYTranslation), in updateClockViews()
|
/aosp14/frameworks/base/core/java/com/android/internal/app/ |
H A D | WindowDecorActionBar.java | 783 ObjectAnimator a = ObjectAnimator.ofFloat(mContainerView, View.TRANSLATION_Y, 0); in doShow() 787 b.with(ObjectAnimator.ofFloat(mContentView, View.TRANSLATION_Y, in doShow() 793 b.with(ObjectAnimator.ofFloat(mSplitView, View.TRANSLATION_Y, 0)); in doShow() 842 ObjectAnimator a = ObjectAnimator.ofFloat(mContainerView, View.TRANSLATION_Y, endingY); in doHide() 846 b.with(ObjectAnimator.ofFloat(mContentView, View.TRANSLATION_Y, in doHide() 851 b.with(ObjectAnimator.ofFloat(mSplitView, View.TRANSLATION_Y, in doHide()
|
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/ |
H A D | AppearAnimationUtils.java | 249 RenderNodeAnimator.TRANSLATION_Y, endTranslationY); in startTranslationYAnimation() 253 translationAnim = ObjectAnimator.ofFloat(view, View.TRANSLATION_Y, in startTranslationYAnimation()
|
/aosp14/frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/ |
H A D | MainActivity.java | 71 RenderNodeAnimator.TRANSLATION_Y, dy * delta); in onItemClick()
|
/aosp14/frameworks/base/core/java/android/transition/ |
H A D | TranslationAnimationCreator.java | 73 ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.TRANSLATION_X, View.TRANSLATION_Y, in createAnimation()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | ViewState.java | 680 ObjectAnimator animator = ObjectAnimator.ofFloat(child, View.TRANSLATION_Y, in startYTranslationAnimation() 683 View.TRANSLATION_Y); in startYTranslationAnimation() 694 View.TRANSLATION_Y); in startYTranslationAnimation()
|
/aosp14/frameworks/base/libs/hwui/ |
H A D | Animator.h | 186 TRANSLATION_Y, enumerator
|
H A D | RenderNode.h | 84 TRANSLATION_Y = 1 << 3, enumerator
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
H A D | TouchAnimator.java | 164 return View.TRANSLATION_Y; in getProperty()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/accessibility/floatingmenu/ |
H A D | MenuAnimationControllerTest.java | 234 mMenuAnimationController.springMenuWith(DynamicAnimation.TRANSLATION_Y, new SpringForce() in setupAndRunSpringAnimations()
|
/aosp14/frameworks/base/packages/SystemUI/docs/ |
H A D | physics-animation-layout.md | 20 Returns the properties, such as TRANSLATION_X and TRANSLATION_Y, for which the layout should constr… 51 … float)`, for setting specific start velocities for TRANSLATION_X and TRANSLATION_Y, since these t…
|