Home
last modified time | relevance | path

Searched refs:TRANSLATION_Y (Results 1 – 25 of 46) 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 …]
DPhysicsAnimationLayoutTest.java72 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);
DExpandedAnimationControllerTest.java203 waitForPropertyAnimations(DynamicAnimation.TRANSLATION_X, DynamicAnimation.TRANSLATION_Y); in waitForAnimation()
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/shared/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/
DStackAnimationController.java284 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 …]
DPhysicsAnimationLayout.java422 || 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 …]
DExpandedAnimationController.java361 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/
DHandleMenuAnimator.kt26 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/
DTapAgainView.java72 ObjectAnimator.ofFloat(this, View.TRANSLATION_Y, yTranslation, 0); in animateIn()
97 ObjectAnimator.ofFloat(this, View.TRANSLATION_Y, 0, -yTranslation); in animateOut()
DKeyguardIndicationTextView.java214 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/
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/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/
DMenuAnimationController.java140 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()
DDragToInteractView.kt198 animator.spring(DynamicAnimation.TRANSLATION_Y, 0f, spring).start() in show()
220 .spring(DynamicAnimation.TRANSLATION_Y, height.toFloat(), spring) in hide()
DDragToInteractAnimationController.java199 DynamicAnimation.TRANSLATION_Y)) { in createMagnetizedObjectAndAnimator()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/bubbles/
DDismissView.kt151 .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/
DKeyguardClockSwitch.java385 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/
DAppearAnimationUtils.java249 RenderNodeAnimator.TRANSLATION_Y, endTranslationY); in startTranslationYAnimation()
253 translationAnim = ObjectAnimator.ofFloat(view, View.TRANSLATION_Y, in startTranslationYAnimation()
/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/tests/graphics/RenderThreadTest/src/com/example/renderthread/
DMainActivity.java71 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/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DStackStateAnimator.java510 mAnimationProperties.setCustomInterpolator(View.TRANSLATION_Y, in processAnimationEvents()
596 mAnimationProperties.setCustomInterpolator(View.TRANSLATION_Y, in processAnimationEvents()
702 mAnimationProperties.setCustomInterpolator(View.TRANSLATION_Y, in processAnimationEvents()
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/libs/hwui/
DAnimator.h186 TRANSLATION_Y, enumerator
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/bar/
DBubbleBarAnimationHelper.java22 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/
DTouchAnimator.java164 return View.TRANSLATION_Y; in getProperty()

12