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

/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
134 fromY = 1;
144 for (y = -fromY; y <= toY; y++)
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_Quarter.c107 OMX_INT fromX, toX, fromY, toY; local
135 fromY = 1;
145 for (y = -fromY; y <= toY; y++)
/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
127 fromY = 1;
141 fromY = 0;
150 for (y = -fromY; y <= toY; y++)
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++)
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DLoggingItemAnimator.java63 public boolean animateMove(RecyclerView.ViewHolder holder, int fromX, int fromY, argument
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);
70 animateChange(RecyclerView.ViewHolder oldHolder, RecyclerView.ViewHolder newHolder, int fromX, int fromY, int toX, int toY) argument
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.java1165 public void drag(ViewGroup view, float fromX, float toX, float fromY, float toY, argument
1170 float y = fromY;
1173 float yStep = (toY - fromY) / stepCount;
/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/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/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
60 this.fromY = fromY;
68 public int fromX, fromY, toX, toY; field in class:DefaultItemAnimator.ChangeInfo
75 int fromX, int fromY, int toX, int toY) {
78 this.fromY = fromY;
89 ", fromY=" + fromY
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.java9902 abstract public boolean animateMove(ViewHolder holder, int fromX, int fromY, argument
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/helper/
H A DItemTouchHelperTest.java442 float fromY = xy[1] + (viewHeight / 2.0f);
445 drag(test, x, x, fromY, toY, stepCount);
510 final int fromY = xy[1];
513 int deltaY = fromY - toY;
516 drag(test, fromX, toX, fromY, toY, distance);
539 final int fromY = xy[1];
543 drag(test, fromX, toX, fromY, fromY, Math.max(10, Math.abs(deltaX) / 10));
565 final int fromY = xy[1];
567 int deltaY = fromY
585 drag(InstrumentationTestCase test, float fromX, float toX, float fromY, float toY, int stepCount) argument
[all...]

Completed in 332 milliseconds