Home
last modified time | relevance | path

Searched refs:TRANSLATION_Y (Results 1 – 25 of 36) sorted by relevance

12

/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/bubbles/animation/
DStackAnimationControllerTest.java93 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 …]
DExpandedAnimationControllerTest.java102 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()
DPhysicsAnimationLayoutTest.java72 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);
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/animation/
DPhysicsAnimatorTest.kt122 .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/
DPhysicsAnimationLayout.java405 || property.equals(DynamicAnimation.TRANSLATION_Y);
479 } else if (property.equals(DynamicAnimation.TRANSLATION_Y)) {
579 } else if (property.equals(DynamicAnimation.TRANSLATION_Y)) {
756 return property(DynamicAnimation.TRANSLATION_Y, translationY, endActions);
762 mInitialPropertyValues.put(DynamicAnimation.TRANSLATION_Y, from);
827 mAnimatedProperties.remove(DynamicAnimation.TRANSLATION_Y);
829 mInitialPropertyValues.remove(DynamicAnimation.TRANSLATION_Y);
831 mEndActionForProperty.remove(DynamicAnimation.TRANSLATION_Y);
886 mPositionStartVelocities.put(DynamicAnimation.TRANSLATION_Y, velY);
928 getSpringAnimationFromView(DynamicAnimation.TRANSLATION_Y, mView);
[all …]
DStackAnimationController.java284 moveFirstBubbleWithStackFollowing(DynamicAnimation.TRANSLATION_Y, y); in moveFirstBubbleWithStackFollowing()
323 springFirstBubbleWithStackFollowing(DynamicAnimation.TRANSLATION_Y, in springStack()
405 DynamicAnimation.TRANSLATION_Y, in flingStackThenSpringToEdge()
511 cancelStackPositionAnimation(DynamicAnimation.TRANSLATION_Y);
514 removeEndActionForProperty(DynamicAnimation.TRANSLATION_Y);
544 DynamicAnimation.TRANSLATION_Y,
545 getSpringForce(DynamicAnimation.TRANSLATION_Y, /* view */ null)
581 DynamicAnimation.TRANSLATION_Y);
672 DynamicAnimation.TRANSLATION_Y, in getAnimatedProperties()
681 || property.equals(DynamicAnimation.TRANSLATION_Y)) { in getNextAnimationInChain()
[all …]
DExpandedAnimationController.java337 DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y) { in prepareForBubbleDrag()
384 bubbleView, DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y)) { in dragBubbleOut()
484 DynamicAnimation.TRANSLATION_Y, in getAnimatedProperties()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DTapAgainView.java69 ObjectAnimator.ofFloat(this, View.TRANSLATION_Y, yTranslation, 0); in animateIn()
94 ObjectAnimator.ofFloat(this, View.TRANSLATION_Y, 0, -yTranslation); in animateOut()
DKeyguardIndicationTextView.java200 ObjectAnimator.ofFloat(this, View.TRANSLATION_Y, 0, -getYTranslationPixels()); in getOutAnimator()
240 ObjectAnimator.ofFloat(this, View.TRANSLATION_Y, getYTranslationPixels(), 0); in getInAnimator()
DNotificationIconContainer.java708 if (property == View.TRANSLATION_Y && iconAppearAmount == 0.0f in IconState()
764 sTempProperties.setCustomInterpolator(View.TRANSLATION_Y, interpolator); in applyToView()
/frameworks/base/core/java/android/view/
DViewPropertyAnimator.java142 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/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DDismissView.kt97 .spring(DynamicAnimation.TRANSLATION_Y, 0f, spring) in show()
113 .spring(DynamicAnimation.TRANSLATION_Y, height.toFloat(), in hide()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardClockSwitch.java223 ObjectAnimator.ofFloat(out, View.TRANSLATION_Y, 0, in updateClockViews()
237 ObjectAnimator.ofFloat(in, View.TRANSLATION_Y, direction * mClockSwitchYAmount, 0)); in updateClockViews()
248 mStatusAreaAnim = ObjectAnimator.ofFloat(mStatusArea, View.TRANSLATION_Y, in updateClockViews()
/frameworks/base/core/java/com/android/internal/app/
DWindowDecorActionBar.java783 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/packages/SettingsLib/src/com/android/settingslib/animation/
DAppearAnimationUtils.java249 RenderNodeAnimator.TRANSLATION_Y, endTranslationY); in startTranslationYAnimation()
253 translationAnim = ObjectAnimator.ofFloat(view, View.TRANSLATION_Y, in startTranslationYAnimation()
/frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/
DMainActivity.java75 RenderNodeAnimator.TRANSLATION_Y, dy * delta); in onItemClick()
/frameworks/base/core/java/android/transition/
DTranslationAnimationCreator.java73 ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.TRANSLATION_X, View.TRANSLATION_Y, in createAnimation()
/frameworks/base/libs/hwui/
DAnimator.h186 TRANSLATION_Y, enumerator
DRenderNode.h85 TRANSLATION_Y = 1 << 3, enumerator
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DViewState.java680 ObjectAnimator animator = ObjectAnimator.ofFloat(child, View.TRANSLATION_Y, in startYTranslationAnimation()
683 View.TRANSLATION_Y); in startYTranslationAnimation()
694 View.TRANSLATION_Y); in startYTranslationAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DTouchAnimator.java164 return View.TRANSLATION_Y; in getProperty()
/frameworks/base/packages/SystemUI/docs/
Dphysics-animation-layout.md20 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…
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/magnetictarget/
DMagnetizedObject.kt649 DynamicAnimation.TRANSLATION_Y) { in <lambda>()
/frameworks/base/graphics/java/android/graphics/animation/
DRenderNodeAnimator.java40 public static final int TRANSLATION_Y = 1; field in RenderNodeAnimator
/frameworks/base/core/java/com/android/internal/dynamicanimation/animation/
DDynamicAnimation.java75 public static final ViewProperty TRANSLATION_Y = new ViewProperty("translationY") { field in DynamicAnimation

12