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.c86 OMX_INT minSAD = 0x10001, fromX, toX, fromY, toY; local
105 fromY = searchRange;
120 fromY = pCurrPointPos->y - pRefRect->y;
129 pDstMV->dy = -fromY;
131 for (y = -fromY; y <= toY; y++)
H A DarmVCM4P2_BlockMatch_Half.c78 OMX_INT minSAD, fromX, toX, fromY, toY; local
112 fromY = 1;
126 fromY = 0;
135 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.c95 OMX_INT fromX, toX, fromY, toY; local
135 fromY = nSearchRange;
150 fromY = pCurrPointPos->y - pRefRect->y;
159 pBestMV->dy = -fromY * 4;
164 for (y = -fromY; y <= toY; y++)
H A DomxVCM4P10_BlockMatch_Half.c92 OMX_INT fromX, toX, fromY, toY; local
119 fromY = 1;
129 for (y = -fromY; y <= toY; y++)
H A DomxVCM4P10_BlockMatch_Quarter.c92 OMX_INT fromX, toX, fromY, toY; local
120 fromY = 1;
130 for (y = -fromY; y <= toY; y++)
/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.java7971 abstract public boolean animateMove(ViewHolder holder, int fromX, int fromY, argument
/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/tests/src/android/support/v7/widget/
H A DDefaultItemAnimatorTest.java160 boolean animateMove(final RecyclerView.ViewHolder vh, final int fromX, final int fromY, argument
166 result[0] = mAnimator.animateMove(vh, fromX, fromY, toX, toY);
174 final int fromX, final int fromY, final int toX, final int toY) throws Throwable {
179 result[0] = mAnimator.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
172 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.java217 public void drag(ViewGroup view, float fromX, float toX, float fromY, float toY, argument
222 float y = fromY;
225 float yStep = (toY - fromY) / stepCount;
H A DRecyclerViewAnimationsTest.java176 public boolean animateMove(RecyclerView.ViewHolder holder, int fromX, int fromY,

Completed in 363 milliseconds