Searched defs:toX (Results 1 - 14 of 14) 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
133 toX = 1;
147 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++)
H A DomxVCM4P10_BlockMatch_Quarter.c107 OMX_INT fromX, toX, fromY, toY; local
134 toX = 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
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/support/v7/recyclerview/tests/src/android/support/v7/util/
H A DTouchUtils.java216 public static int dragViewTo(Instrumentation inst, View v, int gravity, int toX, argument
225 int deltaX = fromX - toX;
229 drag(inst, fromX, toX, fromY, toY, calculateStepsForDistance(distance));
234 public static int dragViewToX(Instrumentation inst, View v, int gravity, int toX) { argument
242 int deltaX = fromX - toX;
244 drag(inst, fromX, toX, fromY, fromY, calculateStepsForDistance(deltaX));
265 public static void drag(Instrumentation inst, float fromX, float toX, float fromY, argument
274 float xStep = (toX - fromX) / stepCount;
/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.java587 * @param toX Final location of the view after dragging
597 public static int dragViewTo(ActivityInstrumentationTestCase test, View v, int gravity, int toX, argument
599 return dragViewTo((InstrumentationTestCase) test, v, gravity, toX, toY);
609 * @param toX Final location of the view after dragging
614 public static int dragViewTo(InstrumentationTestCase test, View v, int gravity, int toX, argument
623 int deltaX = fromX - toX;
627 drag(test, fromX, toX, fromY, toY, distance);
639 * @param toX Final location of the view after dragging
649 int toX) {
650 return dragViewToX((InstrumentationTestCase) test, v, gravity, toX);
648 dragViewToX(ActivityInstrumentationTestCase test, View v, int gravity, int toX) argument
664 dragViewToX(InstrumentationTestCase test, View v, int gravity, int toX) argument
742 drag(ActivityInstrumentationTestCase test, float fromX, float toX, float fromY, float toY, int stepCount) argument
757 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 MoveInfo(ViewHolder holder, int fromX, int fromY, int toX, int toY) { argument
61 this.toX = toX;
68 public int fromX, fromY, toX, toY; field in class:DefaultItemAnimator.ChangeInfo
75 int fromX, int fromY, int toX, int toY) {
79 this.toX = toX;
90 ", toX=" + toX
74 ChangeInfo(ViewHolder oldHolder, ViewHolder newHolder, int fromX, int fromY, int toX, int toY) argument
250 animateMove(final ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
272 animateMoveImpl(final ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
312 animateChange(ViewHolder oldHolder, ViewHolder newHolder, int fromX, int fromY, int toX, int toY) argument
[all...]
H A DSimpleItemAnimator.java221 int toX, int toY);
220 animateMove(ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DLoggingItemAnimator.java154 int toX, int toY) {
156 return super.animateMove(holder, fromX, fromY, toX, toY);
161 RecyclerView.ViewHolder newHolder, int fromX, int fromY, int toX, int toY) {
168 return super.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
153 animateMove(RecyclerView.ViewHolder holder, int fromX, int fromY, int toX, int toY) argument
160 animateChange(RecyclerView.ViewHolder oldHolder, RecyclerView.ViewHolder newHolder, int fromX, int fromY, int toX, int toY) argument
H A DDefaultItemAnimatorTest.java353 final int toX, final int toY) throws Throwable {
358 result[0] = mAnimator.animateMove(vh, fromX, fromY, toX, toY);
366 final int fromX, final int fromY, final int toX, final int toY) throws Throwable {
371 result[0] = mAnimator.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
352 animateMove(final RecyclerView.ViewHolder vh, final int fromX, final int fromY, final int toX, final int toY) argument
364 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.java2120 public void drag(ViewGroup view, float fromX, float toX, float fromY, float toY, argument
2129 float xStep = (toX - fromX) / stepCount;
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java929 final float toX;
939 toX = mTmpRect.width() / 2 * (scaleW - 1f) + appRect.left;
954 toX = appRect.left;
970 Animation translate = createCurvedMotion(fromX, toX, fromY, toY);
1012 Animation translate = createCurvedMotion(toX, fromX, toY, fromY);
1031 private Animation createCurvedMotion(float fromX, float toX, float fromY, float toY) { argument
1034 if (Math.abs(toX - fromX) < 1f || mNextAppTransition != TRANSIT_DOCK_TASK_FROM_RECENTS) {
1035 return new TranslateAnimation(fromX, toX, fromY, toY);
1037 final Path path = createCurvedPath(fromX, toX, fromY, toY);
1042 private Path createCurvedPath(float fromX, float toX, floa argument
[all...]

Completed in 678 milliseconds