Home
last modified time | relevance | path

Searched refs:toY (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/test-runner/src/android/test/
DTouchUtils.java62 final float toY = size.y * 0.75f; in dragQuarterScreenDown() local
64 drag(test, x, x, fromY, toY, 4); in dragQuarterScreenDown()
92 final float toY = size.y * 0.25f; in dragQuarterScreenUp() local
94 drag(test, x, x, fromY, toY, 4); in dragQuarterScreenUp()
229 float toY = screenHeight - 1; in dragViewToBottom() local
231 drag(test, x, x, fromY, toY, stepCount); in dragViewToBottom()
472 float toY = 0; in dragViewToTop() local
474 drag(test, x, x, fromY, toY, stepCount); in dragViewToTop()
592 int toY) { in dragViewTo() argument
593 return dragViewTo((InstrumentationTestCase) test, v, gravity, toX, toY); in dragViewTo()
[all …]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DDefaultItemAnimator.java54 public int fromX, fromY, toX, toY; field in DefaultItemAnimator.MoveInfo
56 private MoveInfo(ViewHolder holder, int fromX, int fromY, int toX, int toY) { in MoveInfo() argument
61 this.toY = toY; in MoveInfo()
67 public int fromX, fromY, toX, toY; field in DefaultItemAnimator.ChangeInfo
74 int fromX, int fromY, int toX, int toY) { in ChangeInfo() argument
79 this.toY = toY; in ChangeInfo()
90 ", toY=" + toY + in toString()
121 moveInfo.toX, moveInfo.toY); in runPendingAnimations()
248 int toX, int toY) { in animateMove() argument
254 int deltaY = toY - fromY; in animateMove()
[all …]
DRecyclerView.java8509 int toX, int toY); in animateMove() argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
DarmVCM4P2_BlockMatch_Integer.c101 OMX_INT minSAD = 0x10001, fromX, toX, fromY, toY; in armVCM4P2_BlockMatch_Integer() local
121 toY = searchRange; in armVCM4P2_BlockMatch_Integer()
140 toY = pRefRect->width - (pCurrPointPos->y - pRefRect->y) - BlockSize; in armVCM4P2_BlockMatch_Integer()
146 for (y = -fromY; y <= toY; y++) in armVCM4P2_BlockMatch_Integer()
DarmVCM4P2_BlockMatch_Half.c93 OMX_INT minSAD, fromX, toX, fromY, toY; in armVCM4P2_BlockMatch_Half() local
128 toY = 1; in armVCM4P2_BlockMatch_Half()
146 toY = 0; in armVCM4P2_BlockMatch_Half()
150 for (y = -fromY; y <= toY; y++) in armVCM4P2_BlockMatch_Half()
/frameworks/base/core/java/android/view/animation/
DScaleAnimation.java145 public ScaleAnimation(float fromX, float toX, float fromY, float toY) { in ScaleAnimation() argument
150 mToY = toY; in ScaleAnimation()
171 public ScaleAnimation(float fromX, float toX, float fromY, float toY, in ScaleAnimation() argument
177 mToY = toY; in ScaleAnimation()
212 public ScaleAnimation(float fromX, float toX, float fromY, float toY, in ScaleAnimation() argument
218 mToY = toY; in ScaleAnimation()
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
DomxVCM4P10_BlockMatch_Integer.c110 OMX_INT fromX, toX, fromY, toY; in omxVCM4P10_BlockMatch_Integer() local
151 toY = nSearchRange; in omxVCM4P10_BlockMatch_Integer()
170 toY = pRefRect->width - (pCurrPointPos->y - pRefRect->y) - iBlockWidth; in omxVCM4P10_BlockMatch_Integer()
179 for (y = -fromY; y <= toY; y++) in omxVCM4P10_BlockMatch_Integer()
DomxVCM4P10_BlockMatch_Half.c107 OMX_INT fromX, toX, fromY, toY; in omxVCM4P10_BlockMatch_Half() local
135 toY = 1; in omxVCM4P10_BlockMatch_Half()
144 for (y = -fromY; y <= toY; y++) in omxVCM4P10_BlockMatch_Half()
DomxVCM4P10_BlockMatch_Quarter.c107 OMX_INT fromX, toX, fromY, toY; in omxVCM4P10_BlockMatch_Quarter() local
136 toY = 1; in omxVCM4P10_BlockMatch_Quarter()
145 for (y = -fromY; y <= toY; y++) in omxVCM4P10_BlockMatch_Quarter()
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
DDefaultItemAnimatorTest.java340 final int toX, final int toY) throws Throwable { in animateMove() argument
345 result[0] = mAnimator.animateMove(vh, fromX, fromY, toX, toY); in animateMove()
353 final int fromX, final int fromY, final int toX, final int toY) throws Throwable { in animateChange() argument
358 result[0] = mAnimator.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY); in animateChange()
DRecyclerViewLayoutTest.java692 public void drag(ViewGroup view, float fromX, float toX, float fromY, float toY, in drag() argument
700 float yStep = (toY - fromY) / stepCount; in drag()
DRecyclerViewAnimationsTest.java176 int toX, int toY) { in testAddRemoveSamePass()