Searched refs:fromY (Results 1 - 13 of 13) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_BlockMatch_Integer.c101 OMX_INT minSAD = 0x10001, fromX, toX, fromY, toY; local
120 fromY = searchRange;
135 fromY = pCurrPointPos->y - pRefRect->y;
144 pDstMV->dy = -fromY;
146 for (y = -fromY; y <= toY; y++)
H A DarmVCM4P2_BlockMatch_Half.c93 OMX_INT minSAD, fromX, toX, fromY, toY; local
127 fromY = 1;
141 fromY = 0;
150 for (y = -fromY; y <= toY; y++)
/frameworks/base/test-runner/src/android/test/
H A DTouchUtils.java61 final float fromY = size.y * 0.5f;
64 drag(test, x, x, fromY, toY, 4);
91 final float fromY = size.y * 0.5f;
94 drag(test, x, x, fromY, toY, 4);
228 float fromY = xy[1] + (viewHeight / 2.0f);
231 drag(test, x, x, fromY, toY, stepCount);
471 float fromY = xy[1] + (viewHeight / 2.0f);
474 drag(test, x, x, fromY, toY, stepCount);
565 final int fromY = xy[1];
569 drag(test, fromX, fromX + deltaX, fromY, from
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_Integer.c110 OMX_INT fromX, toX, fromY, toY; local
150 fromY = nSearchRange;
165 fromY = pCurrPointPos->y - pRefRect->y;
174 pBestMV->dy = -fromY * 4;
179 for (y = -fromY; y <= toY; y++)
H A DomxVCM4P10_BlockMatch_Half.c107 OMX_INT fromX, toX, fromY, toY; local
134 fromY = 1;
144 for (y = -fromY; y <= toY; y++)
H A DomxVCM4P10_BlockMatch_Quarter.c107 OMX_INT fromX, toX, fromY, toY; local
135 fromY = 1;
145 for (y = -fromY; y <= toY; y++)
/frameworks/base/core/java/android/view/animation/
H A DScaleAnimation.java141 * @param fromY Vertical scaling factor to apply at the start of the
145 public ScaleAnimation(float fromX, float toX, float fromY, float toY) { argument
149 mFromY = fromY;
161 * @param fromY Vertical scaling factor to apply at the start of the
171 public ScaleAnimation(float fromX, float toX, float fromY, float toY, argument
176 mFromY = fromY;
192 * @param fromY Vertical scaling factor to apply at the start of the
212 public ScaleAnimation(float fromX, float toX, float fromY, float toY, argument
217 mFromY = fromY;
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DSystemGesturesPointerEventListener.java169 final float fromY = mDownY[i];
172 + " moved (" + fromX + "->" + x + "," + fromY + "->" + y + ") in " + elapsed);
173 if (fromY <= mSwipeStartThreshold
174 && y > fromY + mSwipeDistanceThreshold
178 if (fromY >= screenHeight - mSwipeStartThreshold
179 && y < fromY - mSwipeDistanceThreshold
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DDefaultItemAnimator.java54 public int fromX, fromY, toX, toY; field in class:DefaultItemAnimator.MoveInfo
56 private MoveInfo(ViewHolder holder, int fromX, int fromY, int toX, int toY) { argument
59 this.fromY = fromY;
67 public int fromX, fromY, toX, toY; field in class:DefaultItemAnimator.ChangeInfo
74 int fromX, int fromY, int toX, int toY) {
77 this.fromY = fromY;
88 ", fromY=" + fromY
73 ChangeInfo(ViewHolder oldHolder, ViewHolder newHolder, int fromX, int fromY, int toX, int toY) argument
247 animateMove(final ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
269 animateMoveImpl(final ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
309 animateChange(ViewHolder oldHolder, ViewHolder newHolder, int fromX, int fromY, int toX, int toY) argument
[all...]
H A DRecyclerView.java8508 abstract public boolean animateMove(ViewHolder holder, int fromX, int fromY, argument
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DDefaultItemAnimatorTest.java339 boolean animateMove(final RecyclerView.ViewHolder vh, final int fromX, final int fromY, argument
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);
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 DRecyclerViewLayoutTest.java692 public void drag(ViewGroup view, float fromX, float toX, float fromY, float toY, argument
697 float y = fromY;
700 float yStep = (toY - fromY) / stepCount;
H A DRecyclerViewAnimationsTest.java175 public boolean animateMove(RecyclerView.ViewHolder holder, int fromX, int fromY,

Completed in 427 milliseconds