HomeSort by relevance Sort by last modified time
    Searched refs:fromX (Results 1 - 25 of 51) sorted by null

1 2 3

  /packages/services/Car/car-support-lib/src/android/support/car/ui/
CarItemAnimator.java 34 RecyclerView.ViewHolder newHolder, int fromX, int fromY, int toX, int toY) {
42 boolean ret = super.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_BlockMatch_Integer.c 101 OMX_INT minSAD = 0x10001, fromX, toX, fromY, toY;
118 fromX = searchRange;
125 fromX = pCurrPointPos->x - pRefRect->x;
143 pDstMV->dx = -fromX;
150 for (x = -fromX; x <= toX; x++)
armVCM4P2_BlockMatch_Half.c 93 OMX_INT minSAD, fromX, toX, fromY, toY;
125 fromX = 1;
131 fromX = 0;
153 for (x = -fromX; x <= toX; x++)
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
TouchUtils.java 222 final int fromX = xy[0];
225 int deltaX = fromX - toX;
229 drag(inst, fromX, toX, fromY, toY, calculateStepsForDistance(distance));
239 final int fromX = xy[0];
242 int deltaX = fromX - toX;
244 drag(inst, fromX, toX, fromY, fromY, calculateStepsForDistance(deltaX));
254 final int fromX = xy[0];
259 drag(inst, fromX, fromX, fromY, toY, calculateStepsForDistance(deltaY));
265 public static void drag(Instrumentation inst, float fromX, float toX, float fromY
    [all...]
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRDetector.h 37 FX_FLOAT SizeOfBlackWhiteBlackRunBothWays(int32_t fromX,
41 FX_FLOAT SizeOfBlackWhiteBlackRun(int32_t fromX,
BC_QRDetector.cpp 187 FX_FLOAT CBC_QRDetector::SizeOfBlackWhiteBlackRunBothWays(int32_t fromX,
191 FX_FLOAT result = SizeOfBlackWhiteBlackRun(fromX, fromY, toX, toY);
192 int32_t otherToX = fromX - (toX - fromX);
204 result += SizeOfBlackWhiteBlackRun(fromX, fromY, otherToX, otherToY);
207 FX_FLOAT CBC_QRDetector::SizeOfBlackWhiteBlackRun(int32_t fromX,
211 FX_BOOL steep = FXSYS_abs(toY - fromY) > FXSYS_abs(toX - fromX);
213 int32_t temp = fromX;
214 fromX = fromY;
220 int32_t dx = FXSYS_abs(toX - fromX);
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_BlockMatch_Integer.c 110 OMX_INT fromX, toX, fromY, toY;
148 fromX = nSearchRange;
155 fromX = pCurrPointPos->x - pRefRect->x;
173 pBestMV->dx = -fromX * 4;
182 for (x = -fromX; x <= toX; x++)
omxVCM4P10_BlockMatch_Half.c 107 OMX_INT fromX, toX, fromY, toY;
132 fromX = 1;
147 for (x = -fromX; x <= toX; x++)
omxVCM4P10_BlockMatch_Quarter.c 107 OMX_INT fromX, toX, fromY, toY;
133 fromX = 1;
148 for (x = -fromX; x <= toX; x++)
  /frameworks/base/test-runner/src/android/test/
TouchUtils.java 570 final int fromX = xy[0];
575 drag(test, fromX, fromX + deltaX, fromY, fromY + deltaY, distance);
620 final int fromX = xy[0];
623 int deltaX = fromX - toX;
627 drag(test, fromX, toX, fromY, toY, distance);
669 final int fromX = xy[0];
672 int deltaX = fromX - toX;
674 drag(test, fromX, toX, fromY, fromY, deltaX);
716 final int fromX = xy[0]
    [all...]
  /frameworks/base/core/java/android/view/animation/
ScaleAnimation.java 138 * @param fromX Horizontal scaling factor to apply at the start of the
145 public ScaleAnimation(float fromX, float toX, float fromY, float toY) {
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,
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,
215 mFromX = fromX;
  /frameworks/base/services/core/java/com/android/server/policy/
SystemGesturesPointerEventListener.java 216 final float fromX = mDownX[i];
220 + " moved (" + fromX + "->" + x + "," + fromY + "->" + y + ") in " + elapsed);
231 if (fromX >= screenWidth - mSwipeStartThreshold
232 && x < fromX - mSwipeDistanceThreshold
236 if (fromX <= mSwipeStartThreshold
237 && x > fromX + mSwipeDistanceThreshold
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DefaultItemAnimator.java 55 public int fromX, fromY, toX, toY;
57 MoveInfo(ViewHolder holder, int fromX, int fromY, int toX, int toY) {
59 this.fromX = fromX;
68 public int fromX, fromY, toX, toY;
75 int fromX, int fromY, int toX, int toY) {
77 this.fromX = fromX;
88 ", fromX=" + fromX
    [all...]
SimpleItemAnimator.java 220 abstract public boolean animateMove(ViewHolder holder, int fromX, int fromY,
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
LoggingItemAnimator.java 153 public boolean animateMove(RecyclerView.ViewHolder holder, int fromX, int fromY,
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);
DefaultItemAnimatorTest.java 352 boolean animateMove(final RecyclerView.ViewHolder vh, final int fromX, final int fromY,
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);
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DataMatrixDetector.cpp 337 int32_t fromX = (int32_t)from->GetX();
341 FX_BOOL steep = FXSYS_abs(toY - fromY) > FXSYS_abs(toX - fromX);
343 int32_t temp = fromX;
344 fromX = fromY;
350 int32_t dx = FXSYS_abs(toX - fromX);
354 int32_t xstep = fromX < toX ? 1 : -1;
356 FX_BOOL inBlack = m_image->Get(steep ? fromY : fromX, steep ? fromX : fromY);
357 for (int32_t x = fromX, y = fromY; x != toX; x += xstep) {
  /frameworks/base/services/core/java/com/android/server/wm/
AppTransition.java     [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
ScaleAnimationTest.java 152 public MyScaleAnimation(float fromX, float toX, float fromY, float toY,
154 super(fromX, toX, fromY, toY, pivotXValue, pivotYValue);
  /packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java 463 final int fromX = r.left;
466 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY,
518 final int fromX = r.left;
529 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, scale, scale,
533 public void animateViewIntoPosition(final DragView view, final int fromX, final int fromY,
537 Rect from = new Rect(fromX, fromY, fromX +
  /packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DragLayer.java 685 final int fromX = r.left;
688 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY,
749 final int fromX = r.left;
760 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, toScale, toScale,
764 public void animateViewIntoPosition(final DragView view, final int fromX, final int fromY,
768 Rect from = new Rect(fromX, fromY, fromX +
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
HorizontalScrollViewTest.java 795 private void pollingCheckSmoothScrolling(final int fromX, final int toX,
798 if (fromX == toX && fromY == toY) {
811 if (fromX != toX) {
815 return isInRange(mScrollView.getScrollX(), fromX, toX);
    [all...]
ScrollViewTest.java 824 private void pollingCheckSmoothScrolling(final int fromX, final int toX,
827 if (fromX == toX && fromY == toY) {
840 if (fromX != toX) {
844 return isInRange(mScrollView.getScrollX(), fromX, toX);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageShow.java 686 private void startAnimTranslation(int fromX, int toX,
688 if (fromX == toX && fromY == toY) {
697 mAnimatorTranslateX = ValueAnimator.ofInt(fromX, toX);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
LinearLayoutRule.java 417 int fromX = x - width / 2;
419 gc.drawLine(fromX, y, toX, y);
    [all...]

Completed in 1407 milliseconds

1 2 3