Searched refs:toY (Results 1 - 14 of 14) sorted by relevance

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DLoggingItemAnimator.java64 int toX, int toY) {
66 return super.animateMove(holder, fromX, fromY, toX, toY);
71 RecyclerView.ViewHolder newHolder, int fromX, int fromY, int toX, int toY) {
78 return super.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
63 animateMove(RecyclerView.ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
70 animateChange(RecyclerView.ViewHolder oldHolder, RecyclerView.ViewHolder newHolder, int fromX, int fromY, int toX, int toY) argument
H A DDefaultItemAnimatorTest.java340 final int toX, final int toY) throws Throwable {
345 result[0] = mAnimator.animateMove(vh, fromX, fromY, toX, toY);
353 final int fromX, final int fromY, final int toX, final int toY) throws Throwable {
358 result[0] = mAnimator.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
339 animateMove(final RecyclerView.ViewHolder vh, final int fromX, final int fromY, final int toX, final int toY) argument
351 animateChange(final RecyclerView.ViewHolder oldHolder, final RecyclerView.ViewHolder newHolder, final int fromX, final int fromY, final int toX, final int toY) argument
H A DRecyclerViewAnimationsTest.java330 int toX, int toY) {
H A DRecyclerViewLayoutTest.java1165 public void drag(ViewGroup view, float fromX, float toX, float fromY, float toY, argument
1173 float yStep = (toY - fromY) / stepCount;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_BlockMatch_Half.c93 OMX_INT minSAD, fromX, toX, fromY, toY; local
128 toY = 1;
146 toY = 0;
150 for (y = -fromY; y <= toY; y++)
H A DarmVCM4P2_BlockMatch_Integer.c101 OMX_INT minSAD = 0x10001, fromX, toX, fromY, toY; local
121 toY = searchRange;
140 toY = pRefRect->width - (pCurrPointPos->y - pRefRect->y) - BlockSize;
146 for (y = -fromY; y <= toY; y++)
/frameworks/base/test-runner/src/android/test/
H A DTouchUtils.java62 final float toY = size.y * 0.75f;
64 drag(test, x, x, fromY, toY, 4);
92 final float toY = size.y * 0.25f;
94 drag(test, x, x, fromY, toY, 4);
229 float toY = screenHeight - 1;
231 drag(test, x, x, fromY, toY, stepCount);
472 float toY = 0;
474 drag(test, x, x, fromY, toY, stepCount);
582 * @param toY Final location of the view after dragging
592 int toY) {
591 dragViewTo(ActivityInstrumentationTestCase test, View v, int gravity, int toX, int toY) argument
608 dragViewTo(InstrumentationTestCase test, View v, int gravity, int toX, int toY) argument
689 dragViewToY(ActivityInstrumentationTestCase test, View v, int gravity, int toY) argument
705 dragViewToY(InstrumentationTestCase test, View v, int gravity, int toY) argument
736 drag(ActivityInstrumentationTestCase test, float fromX, float toX, float fromY, float toY, int stepCount) argument
751 drag(InstrumentationTestCase test, float fromX, float toX, float fromY, float toY, int stepCount) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DomxVCM4P10_BlockMatch_Half.c107 OMX_INT fromX, toX, fromY, toY; local
135 toY = 1;
144 for (y = -fromY; y <= toY; y++)
H A DomxVCM4P10_BlockMatch_Quarter.c107 OMX_INT fromX, toX, fromY, toY; local
136 toY = 1;
145 for (y = -fromY; y <= toY; y++)
H A DomxVCM4P10_BlockMatch_Integer.c110 OMX_INT fromX, toX, fromY, toY; local
151 toY = nSearchRange;
170 toY = pRefRect->width - (pCurrPointPos->y - pRefRect->y) - iBlockWidth;
179 for (y = -fromY; y <= toY; y++)
/frameworks/base/core/java/android/view/animation/
H A DScaleAnimation.java143 * @param toY Vertical scaling factor to apply at the end of the animation
145 public ScaleAnimation(float fromX, float toX, float fromY, float toY) { argument
150 mToY = toY;
163 * @param toY Vertical scaling factor to apply at the end of the animation
171 public ScaleAnimation(float fromX, float toX, float fromY, float toY, argument
177 mToY = toY;
194 * @param toY Vertical scaling factor to apply at the end of the animation
212 public ScaleAnimation(float fromX, float toX, float fromY, float toY, argument
218 mToY = toY;
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DDefaultItemAnimator.java55 public int fromX, fromY, toX, toY; field in class:DefaultItemAnimator.MoveInfo
57 private MoveInfo(ViewHolder holder, int fromX, int fromY, int toX, int toY) { argument
62 this.toY = toY;
68 public int fromX, fromY, toX, toY; field in class:DefaultItemAnimator.ChangeInfo
75 int fromX, int fromY, int toX, int toY) {
80 this.toY = toY;
91 ", toY=" + toY
74 ChangeInfo(ViewHolder oldHolder, ViewHolder newHolder, int fromX, int fromY, int toX, int toY) argument
249 animateMove(final ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
271 animateMoveImpl(final ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
311 animateChange(ViewHolder oldHolder, ViewHolder newHolder, int fromX, int fromY, int toX, int toY) argument
[all...]
H A DRecyclerView.java9903 int toX, int toY);
9902 animateMove(ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/helper/
H A DItemTouchHelperTest.java443 float toY = 0;
445 drag(test, x, x, fromY, toY, stepCount);
500 * @param toY Final location of the view after dragging
504 int toY) {
513 int deltaY = fromY - toY;
516 drag(test, fromX, toX, fromY, toY, distance);
556 * @param toY Final location of the view after dragging
559 public static int dragViewToY(InstrumentationTestCase test, View v, int gravity, int toY) { argument
567 int deltaY = fromY - toY;
569 drag(test, fromX, fromX, fromY, toY, delta
503 dragViewTo(InstrumentationTestCase test, View v, int gravity, int toX, int toY) argument
585 drag(InstrumentationTestCase test, float fromX, float toX, float fromY, float toY, int stepCount) argument
[all...]

Completed in 784 milliseconds