/cts/tests/tests/animation/src/android/animation/cts/ |
D | ObjectAnimatorTest.java | 57 float endY = mActivity.mStartY + mActivity.mDeltaY; in testOfFloat() local 58 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); in testOfFloat() 70 assertTrue( y <= endY); in testOfFloat() 77 float endY = mActivity.mStartY + mActivity.mDeltaY; in testOfFloatBase() local 78 ObjectAnimator animator = ObjectAnimator.ofFloat(object, property, startY, endY); in testOfFloatBase() 182 float endY = mActivity.mStartY + mActivity.mDeltaY; in testSetFloatValues() local 183 float[] values = {startY, endY}; in testSetFloatValues() 196 assertTrue( y <= endY); in testSetFloatValues() 216 float endY = mActivity.mStartY + mActivity.mDeltaY; in testClone() local 218 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); in testClone() [all …]
|
D | AnimatorTest.java | 111 float endY = mActivity.mStartY + mActivity.mDeltaY; in testEnd() local 112 Animator animator = ObjectAnimator.ofFloat(object, property, startY, endY); in testEnd() 121 assertEquals(y, endY); in testEnd()
|
D | ValueAnimatorTest.java | 300 float endY = mActivity.mStartY + mActivity.mDeltaY; in testEnd() local 301 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); in testEnd() 310 assertEquals(y, endY); in testEnd() 425 float endY = mActivity.mStartY + mActivity.mDeltaY; in getAnimator() local 426 ValueAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); in getAnimator()
|
D | AnimatorSetTest.java | 349 float endY = mActivity.mStartY + mActivity.mDeltaY; in getYAnimator() local 350 ObjectAnimator yAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); in getYAnimator()
|
D | PropertyValuesHolderTest.java | 399 public void assertResults(float[] yArray,float startY, float endY) { in assertResults() argument 403 assertTrue(y <= endY); in assertResults()
|
/cts/tests/tests/transition/src/android/transition/cts/ |
D | ArcMotionTest.java | 87 private Path arcWithPoint(float startX, float startY, float endX, float endY, in arcWithPoint() argument 92 float c2y = (eY + endY)/2; in arcWithPoint() 95 path.cubicTo(c1x, c1y, c2x, c2y, endX, endY); in arcWithPoint()
|
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/ |
D | GestureDescriptionTest.java | 163 int endY = 150; in testStrokeDescriptionGetters_workAsExpected() local 168 path.lineTo(x, endY); in testStrokeDescriptionGetters_workAsExpected()
|
D | AccessibilityGestureDispatchTest.java | 181 int endY = endYInsideView + mViewBounds.top; in testSwipe_shouldContainPointsInALine() local 185 GestureDescription swipe = createSwipe(startX, startY, endX, endY, gestureTime); in testSwipe_shouldContainPointsInALine() 229 int endY = endYInsideView + mViewBounds.top; in testSlowSwipe_shouldNotContainMovesForTinyMovement() local 232 GestureDescription swipe = createSwipe(startX, startY, endX, endY, gestureTime); in testSlowSwipe_shouldNotContainMovesForTinyMovement() 497 int startX, int startY, int endX, int endY, long duration) { in createSwipe() argument 500 swipePath.lineTo(endX, endY); in createSwipe()
|