/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/animation/ |
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() 152 waitForPropertyAnimations(DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y); in testFlingUpFromBelowBottomCenter() 161 DynamicAnimation.TRANSLATION_Y, in testFlingUpFromBelowBottomCenter() 169 DynamicAnimation.TRANSLATION_Y); in testFlingUpFromBelowBottomCenter() 182 DynamicAnimation.TRANSLATION_Y); in testChildAdded() 194 DynamicAnimation.TRANSLATION_Y, in testChildAdded() [all …]
|
D | PhysicsAnimationLayoutTest.java | 72 DynamicAnimation.TRANSLATION_Y, in setUp() 166 mTestableController.setEndActionForProperty(yEndAction, DynamicAnimation.TRANSLATION_Y); in testSetEndActions() 287 DynamicAnimation.TRANSLATION_Y, in testArePropertiesAnimating() 299 assertFalse(mLayout.arePropertiesAnimating(DynamicAnimation.TRANSLATION_Y)); in testArePropertiesAnimating() 305 DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y, in testArePropertiesAnimating() 356 waitForPropertyAnimations(DynamicAnimation.TRANSLATION_Y); 397 DynamicAnimation.TRANSLATION_Y);
|
D | ExpandedAnimationControllerTest.java | 203 waitForPropertyAnimations(DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y); in waitForAnimation()
|
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/shared/animation/ |
D | PhysicsAnimatorTest.kt | 122 .spring(DynamicAnimation.TRANSLATION_Y, 50f, springConfig) in <lambda>() 137 .fling(DynamicAnimation.TRANSLATION_Y, 500f, flingConfig) in <lambda>() 159 .spring(DynamicAnimation.TRANSLATION_Y, 500f, springConfig) in <lambda>() 170 assertTrue(animator.isPropertyAnimating(DynamicAnimation.TRANSLATION_Y)) in <lambda>() 188 PhysicsAnimatorTestUtils.blockUntilAnimationsEnd(animator, DynamicAnimation.TRANSLATION_Y) in <lambda>() 198 DynamicAnimation.TRANSLATION_Y, in <lambda>() 214 .spring(DynamicAnimation.TRANSLATION_Y, 50f, springConfig) in <lambda>() 337 .spring(DynamicAnimation.TRANSLATION_Y, 4000f, springConfig) in <lambda>() 375 PhysicsAnimatorTestUtils.blockUntilAnimationsEnd(animator, DynamicAnimation.TRANSLATION_Y) in <lambda>() 382 .onAnimationEnd(testView, DynamicAnimation.TRANSLATION_Y, in <lambda>() [all …]
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/animation/ |
D | StackAnimationController.java | 284 moveFirstBubbleWithStackFollowing(DynamicAnimation.TRANSLATION_Y, y); in moveFirstBubbleWithStackFollowing() 320 springFirstBubbleWithStackFollowing(DynamicAnimation.TRANSLATION_Y, in springStack() 402 DynamicAnimation.TRANSLATION_Y, in flingStackThenSpringToEdge() 508 cancelStackPositionAnimation(DynamicAnimation.TRANSLATION_Y); 511 removeEndActionForProperty(DynamicAnimation.TRANSLATION_Y); 541 DynamicAnimation.TRANSLATION_Y, 542 getSpringForce(DynamicAnimation.TRANSLATION_Y, /* view */ null) 578 DynamicAnimation.TRANSLATION_Y); 669 DynamicAnimation.TRANSLATION_Y, in getAnimatedProperties() 678 || property.equals(DynamicAnimation.TRANSLATION_Y)) { in getNextAnimationInChain() [all …]
|
D | PhysicsAnimationLayout.java | 422 || property.equals(DynamicAnimation.TRANSLATION_Y) 497 } else if (property.equals(DynamicAnimation.TRANSLATION_Y)) { 602 } else if (property.equals(DynamicAnimation.TRANSLATION_Y)) { 787 return property(DynamicAnimation.TRANSLATION_Y, translationY, endActions); 793 mInitialPropertyValues.put(DynamicAnimation.TRANSLATION_Y, from); 859 mAnimatedProperties.remove(DynamicAnimation.TRANSLATION_Y); 862 mInitialPropertyValues.remove(DynamicAnimation.TRANSLATION_Y); 865 mEndActionForProperty.remove(DynamicAnimation.TRANSLATION_Y); 921 mPositionStartVelocities.put(DynamicAnimation.TRANSLATION_Y, velY); 964 getSpringAnimationFromView(DynamicAnimation.TRANSLATION_Y, mView); [all …]
|
D | ExpandedAnimationController.java | 361 DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y) { in prepareForBubbleDrag() 410 bubbleView, DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y)) { in dragBubbleOut() 515 DynamicAnimation.TRANSLATION_Y, in getAnimatedProperties()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/ |
D | HandleMenuAnimator.kt | 26 import android.view.View.TRANSLATION_Y 183 ObjectAnimator.ofFloat(handleMenu, TRANSLATION_Y, yStart, 0f).apply { in captionHandleExpandIntoAppInfoPill() 310 ObjectAnimator.ofFloat(appInfoPill, TRANSLATION_Y, yStart).apply { in appInfoCollapseToHandle() 377 ObjectAnimator.ofFloat(moreActionsPill, TRANSLATION_Y, yStart).apply { in moreActionsPillClose()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | TapAgainView.java | 72 ObjectAnimator.ofFloat(this, View.TRANSLATION_Y, yTranslation, 0); in animateIn() 97 ObjectAnimator.ofFloat(this, View.TRANSLATION_Y, 0, -yTranslation); in animateOut()
|
D | KeyguardIndicationTextView.java | 214 ObjectAnimator.ofFloat(this, View.TRANSLATION_Y, 0, -getYTranslationPixels()); in getOutAnimator() 266 ObjectAnimator.ofFloat(this, View.TRANSLATION_Y, getYTranslationPixels(), 0); in getInAnimator()
|
/frameworks/base/core/java/android/view/ |
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()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/ |
D | MenuAnimationController.java | 140 springMenuWith(DynamicAnimation.TRANSLATION_Y, in moveToPositionY() 145 DynamicAnimation.TRANSLATION_Y.setValue(mMenuView, positionY); in moveToPositionY() 217 flingThenSpringMenuWith(DynamicAnimation.TRANSLATION_Y, in flingMenuThenSpringToEdge() 365 springMenuWith(DynamicAnimation.TRANSLATION_Y, in moveOutEdgeAndShow() 377 cancelAnimation(DynamicAnimation.TRANSLATION_Y); in cancelAnimations()
|
D | DragToInteractView.kt | 198 animator.spring(DynamicAnimation.TRANSLATION_Y, 0f, spring).start() in show() 220 .spring(DynamicAnimation.TRANSLATION_Y, height.toFloat(), spring) in hide()
|
D | DragToInteractAnimationController.java | 199 DynamicAnimation.TRANSLATION_Y)) { in createMagnetizedObjectAndAnimator()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/bubbles/ |
D | DismissView.kt | 151 .spring(DynamicAnimation.TRANSLATION_Y, 0f, spring) in show() 168 .spring(DynamicAnimation.TRANSLATION_Y, height.toFloat(), in hide()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardClockSwitch.java | 385 ObjectAnimator.ofFloat(out, TRANSLATION_Y, clockOutYTranslation)); in updateClockViews() 401 ObjectAnimator.ofFloat(in, TRANSLATION_Y, clockInYTranslation)); in updateClockViews() 419 ObjectAnimator.ofFloat(mSmallClockFrame, TRANSLATION_Y, statusAreaYTranslation), in updateClockViews()
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/animation/ |
D | AppearAnimationUtils.java | 249 RenderNodeAnimator.TRANSLATION_Y, endTranslationY); in startTranslationYAnimation() 253 translationAnim = ObjectAnimator.ofFloat(view, View.TRANSLATION_Y, in startTranslationYAnimation()
|
/frameworks/base/core/java/com/android/internal/app/ |
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()
|
/frameworks/base/tests/graphics/RenderThreadTest/src/com/example/renderthread/ |
D | MainActivity.java | 71 RenderNodeAnimator.TRANSLATION_Y, dy * delta); in onItemClick()
|
/frameworks/base/core/java/android/transition/ |
D | TranslationAnimationCreator.java | 73 ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.TRANSLATION_X, View.TRANSLATION_Y, in createAnimation()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | StackStateAnimator.java | 510 mAnimationProperties.setCustomInterpolator(View.TRANSLATION_Y, in processAnimationEvents() 596 mAnimationProperties.setCustomInterpolator(View.TRANSLATION_Y, in processAnimationEvents() 702 mAnimationProperties.setCustomInterpolator(View.TRANSLATION_Y, in processAnimationEvents()
|
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()
|
/frameworks/base/libs/hwui/ |
D | Animator.h | 186 TRANSLATION_Y, enumerator
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/ |
D | BubbleBarAnimationHelper.java | 22 import static android.view.View.TRANSLATION_Y; 387 ObjectAnimator.ofFloat(bbev, TRANSLATION_Y, bbev.getTranslationY() + yDiff), in animateIntoTarget()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | TouchAnimator.java | 164 return View.TRANSLATION_Y; in getProperty()
|