Searched defs:fromX (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
132 fromX = 1;
147 for (x = -fromX; x <= toX; x++)
H A DomxVCM4P10_BlockMatch_Integer.c110 OMX_INT fromX, toX, fromY, toY; local
148 fromX = nSearchRange;
155 fromX = pCurrPointPos->x - pRefRect->x;
173 pBestMV->dx = -fromX * 4;
182 for (x = -fromX; x <= toX; x++)
H A DomxVCM4P10_BlockMatch_Quarter.c107 OMX_INT fromX, toX, fromY, toY; local
133 fromX = 1;
148 for (x = -fromX; x <= toX; x++)
/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
125 fromX = 1;
131 fromX = 0;
153 for (x = -fromX; x <= toX; x++)
H A DarmVCM4P2_BlockMatch_Integer.c101 OMX_INT minSAD = 0x10001, fromX, toX, fromY, toY; local
118 fromX = searchRange;
125 fromX = pCurrPointPos->x - pRefRect->x;
143 pDstMV->dx = -fromX;
150 for (x = -fromX; x <= toX; x++)
/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
1171 float x = fromX;
1174 float xStep = (toX - fromX) / stepCount;
/frameworks/base/core/java/android/view/animation/
H A DScaleAnimation.java138 * @param fromX Horizontal scaling factor to apply at the start of the
145 public ScaleAnimation(float fromX, float toX, float fromY, float toY) { argument
147 mFromX = fromX;
158 * @param fromX Horizontal scaling factor to apply at the start of the
171 public ScaleAnimation(float fromX, float toX, float fromY, float toY, argument
174 mFromX = fromX;
189 * @param fromX Horizontal scaling factor to apply at the start of the
212 public ScaleAnimation(float fromX, float toX, float fromY, float toY, argument
215 mFromX = fromX;
/frameworks/base/test-runner/src/android/test/
H A DTouchUtils.java564 final int fromX = xy[0];
569 drag(test, fromX, fromX + deltaX, fromY, fromY + deltaY, distance);
614 final int fromX = xy[0];
617 int deltaX = fromX - toX;
621 drag(test, fromX, toX, fromY, toY, distance);
663 final int fromX = xy[0];
666 int deltaX = fromX - toX;
668 drag(test, fromX, toX, fromY, fromY, deltaX);
710 final int fromX
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
59 this.fromX = fromX;
68 public int fromX, fromY, toX, toY; field in class:DefaultItemAnimator.ChangeInfo
75 int fromX, int fromY, int toX, int toY) {
77 this.fromX = fromX;
88 ", fromX=" + fromX
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.java509 final int fromX = xy[0];
512 int deltaX = fromX - toX;
516 drag(test, fromX, toX, fromY, toY, distance);
538 final int fromX = xy[0];
541 int deltaX = fromX - toX;
543 drag(test, fromX, toX, fromY, fromY, Math.max(10, Math.abs(deltaX) / 10));
564 final int fromX = xy[0];
569 drag(test, fromX, fromX, fromY, toY, deltaY);
579 * @param fromX
585 drag(InstrumentationTestCase test, float fromX, float toX, float fromY, float toY, int stepCount) argument
[all...]

Completed in 9391 milliseconds