Home
last modified time | relevance | path

Searched refs:endY (Results 1 – 8 of 8) sorted by relevance

/cts/tests/tests/transition/src/android/transition/cts/
DArcMotionTest.java94 private static Path arcWithPoint(float startX, float startY, float endX, float endY, in arcWithPoint() argument
99 float c2y = (eY + endY) / 2; in arcWithPoint()
102 path.cubicTo(c1x, c1y, c2x, c2y, endX, endY); in arcWithPoint()
DTransitionInflaterTest.java255 public Path getPath(float startX, float startY, float endX, float endY) { in getPath() argument
/cts/tests/tests/animation/src/android/animation/cts/
DObjectAnimatorTest.java105 float endY = mActivity.mStartY + mActivity.mDeltaY; in testOfFloat() local
106 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); in testOfFloat()
112 assertTrue(y <= endY); in testOfFloat()
134 float endY = mActivity.mStartY + mActivity.mDeltaY; in testOfFloatBase() local
135 ObjectAnimator animator = ObjectAnimator.ofFloat(object, property, startY, endY); in testOfFloatBase()
304 float endY = mActivity.mStartY + mActivity.mDeltaY; in testSetFloatValues() local
305 float[] values = {startY, endY}; in testSetFloatValues()
310 assertTrue(y <= endY); in testSetFloatValues()
348 float endY = mActivity.mStartY + mActivity.mDeltaY; in testClone() local
350 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); in testClone()
[all …]
DAnimatorTest.java136 float endY = mActivity.mStartY + mActivity.mDeltaY; in testEnd() local
137 Animator animator = ObjectAnimator.ofFloat(object, property, startY, endY); in testEnd()
146 assertEquals(y, endY, 0.0f); in testEnd()
DValueAnimatorTest.java468 float endY = mActivity.mStartY + mActivity.mDeltaY; in testEnd() local
469 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); in testEnd()
478 assertEquals(y, endY, 0.0f); in testEnd()
690 float endY = mActivity.mStartY + mActivity.mDeltaY; in getAnimator() local
691 ValueAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); in getAnimator()
DPropertyValuesHolderTest.java801 public void assertResults(float[] yArray,float startY, float endY) { in assertResults() argument
805 assertTrue(y <= endY); in assertResults()
DAnimatorSetTest.java608 float endY = mActivity.mStartY + mActivity.mDeltaY; in getYAnimator() local
609 ObjectAnimator yAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); in getYAnimator()
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
DGestureDescriptionTest.java180 int endY = 150; in testStrokeDescriptionGetters_workAsExpected() local
185 path.lineTo(x, endY); in testStrokeDescriptionGetters_workAsExpected()