Searched refs:toX (Results 1 - 12 of 12) sorted by relevance

/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
126 toX = 1;
136 toX = 0;
153 for (x = -fromX; x <= toX; x++)
H A DarmVCM4P2_BlockMatch_Integer.c101 OMX_INT minSAD = 0x10001, fromX, toX, fromY, toY; local
119 toX = searchRange;
130 toX = pRefRect->width - (pCurrPointPos->x - pRefRect->x) - BlockSize;
150 for (x = -fromX; x <= toX; x++)
/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
133 toX = 1;
147 for (x = -fromX; x <= toX; x++)
H A DomxVCM4P10_BlockMatch_Quarter.c107 OMX_INT fromX, toX, fromY, toY; local
134 toX = 1;
148 for (x = -fromX; x <= toX; x++)
H A DomxVCM4P10_BlockMatch_Integer.c110 OMX_INT fromX, toX, fromY, toY; local
149 toX = nSearchRange;
160 toX = pRefRect->width - (pCurrPointPos->x - pRefRect->x) - iBlockWidth;
182 for (x = -fromX; x <= toX; x++)
/frameworks/base/core/java/android/view/animation/
H A DScaleAnimation.java140 * @param toX Horizontal scaling factor to apply at the end of the animation
145 public ScaleAnimation(float fromX, float toX, float fromY, float toY) { argument
148 mToX = toX;
160 * @param toX Horizontal scaling factor to apply at the end of the animation
171 public ScaleAnimation(float fromX, float toX, float fromY, float toY, argument
175 mToX = toX;
191 * @param toX Horizontal scaling factor to apply at the end of the animation
212 public ScaleAnimation(float fromX, float toX, float fromY, float toY, argument
216 mToX = toX;
/frameworks/base/test-runner/src/android/test/
H A DTouchUtils.java581 * @param toX Final location of the view after dragging
591 public static int dragViewTo(ActivityInstrumentationTestCase test, View v, int gravity, int toX, argument
593 return dragViewTo((InstrumentationTestCase) test, v, gravity, toX, toY);
603 * @param toX Final location of the view after dragging
608 public static int dragViewTo(InstrumentationTestCase test, View v, int gravity, int toX, argument
617 int deltaX = fromX - toX;
621 drag(test, fromX, toX, fromY, toY, distance);
633 * @param toX Final location of the view after dragging
643 int toX) {
644 return dragViewToX((InstrumentationTestCase) test, v, gravity, toX);
642 dragViewToX(ActivityInstrumentationTestCase test, View v, int gravity, int toX) argument
658 dragViewToX(InstrumentationTestCase test, View v, int gravity, int toX) 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/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
60 this.toX = toX;
67 public int fromX, fromY, toX, toY; field in class:DefaultItemAnimator.ChangeInfo
74 int fromX, int fromY, int toX, int toY) {
78 this.toX = toX;
89 ", toX=" + toX
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.java8509 int toX, int toY);
8508 animateMove(ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
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 DRecyclerViewLayoutTest.java692 public void drag(ViewGroup view, float fromX, float toX, float fromY, float toY, argument
701 float xStep = (toX - fromX) / stepCount;
H A DRecyclerViewAnimationsTest.java176 int toX, int toY) {

Completed in 250 milliseconds