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

1 2

  /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_Half.c 93 OMX_INT minSAD, fromX, toX, fromY, toY;
126 toX = 1;
136 toX = 0;
153 for (x = -fromX; x <= toX; x++)
armVCM4P2_BlockMatch_Integer.c 101 OMX_INT minSAD = 0x10001, fromX, toX, fromY, toY;
119 toX = searchRange;
130 toX = pRefRect->width - (pCurrPointPos->x - pRefRect->x) - BlockSize;
150 for (x = -fromX; x <= toX; x++)
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRDetector.h 39 int32_t toX,
43 int32_t toX,
BC_QRDetector.cpp 189 int32_t toX,
191 FX_FLOAT result = SizeOfBlackWhiteBlackRun(fromX, fromY, toX, toY);
192 int32_t otherToX = fromX - (toX - fromX);
209 int32_t toX,
211 FX_BOOL steep = FXSYS_abs(toY - fromY) > FXSYS_abs(toX - fromX);
216 temp = toX;
217 toX = toY;
220 int32_t dx = FXSYS_abs(toX - fromX);
224 int32_t xstep = fromX < toX ? 1 : -1;
226 for (int32_t x = fromX, y = fromY; x != toX; x += xstep) {
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_BlockMatch_Half.c 107 OMX_INT fromX, toX, fromY, toY;
133 toX = 1;
147 for (x = -fromX; x <= toX; x++)
omxVCM4P10_BlockMatch_Quarter.c 107 OMX_INT fromX, toX, fromY, toY;
134 toX = 1;
148 for (x = -fromX; x <= toX; x++)
omxVCM4P10_BlockMatch_Integer.c 110 OMX_INT fromX, toX, fromY, toY;
149 toX = nSearchRange;
160 toX = pRefRect->width - (pCurrPointPos->x - pRefRect->x) - iBlockWidth;
182 for (x = -fromX; x <= toX; x++)
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
TouchUtils.java 216 public static int dragViewTo(Instrumentation inst, View v, int gravity, int toX,
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) {
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,
274 float xStep = (toX - fromX) / stepCount;
  /frameworks/base/core/java/android/view/animation/
ScaleAnimation.java 140 * @param toX Horizontal scaling factor to apply at the end of the animation
145 public ScaleAnimation(float fromX, float toX, float fromY, float toY) {
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,
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,
216 mToX = toX;
  /frameworks/base/test-runner/src/android/test/
TouchUtils.java 587 * @param toX Final location of the view after dragging
597 public static int dragViewTo(ActivityInstrumentationTestCase test, View v, int gravity, int toX,
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,
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);
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DefaultItemAnimator.java 55 public int fromX, fromY, toX, toY;
57 private MoveInfo(ViewHolder holder, int fromX, int fromY, int toX, int toY) {
61 this.toX = toX;
68 public int fromX, fromY, toX, toY;
75 int fromX, int fromY, int toX, int toY) {
79 this.toX = toX;
90 ", toX=" + toX
    [all...]
SimpleItemAnimator.java 221 int toX, int toY);
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
LoggingItemAnimator.java 154 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);
DefaultItemAnimatorTest.java 353 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);
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DataMatrixDetector.cpp 339 int32_t toX = (int32_t)to->GetX();
341 FX_BOOL steep = FXSYS_abs(toY - fromY) > FXSYS_abs(toX - fromX);
346 temp = toX;
347 toX = toY;
350 int32_t dx = FXSYS_abs(toX - fromX);
354 int32_t xstep = fromX < toX ? 1 : -1;
357 for (int32_t x = fromX, y = fromY; x != toX; x += xstep) {
  /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 495 int toX = coord[0];
505 toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2;
511 toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2;
514 toX -= (Math.round(scale * (dragView.getMeasuredWidth()
529 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, scale, scale,
534 final int toX, final int toY, float finalAlpha, float initScaleX, float initScaleY,
539 Rect to = new Rect(toX, toY, toX + view.getMeasuredWidth(), toY + view.getMeasuredHeight());
  /packages/apps/Launcher3/src/com/android/launcher3/
DragLayer.java 591 int toX = coord[0];
609 toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2;
616 toX -= (dragView.getMeasuredWidth() - Math.round(scale * child.getMeasuredWidth())) / 2;
619 toX -= (Math.round(scale * (dragView.getMeasuredWidth()
634 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, toScale, toScale,
639 final int toX, final int toY, float finalAlpha, float initScaleX, float initScaleY,
644 Rect to = new Rect(toX, toY, toX + view.getMeasuredWidth(), toY + view.getMeasuredHeight());
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
AppTransition.java     [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);
823 return toX == mScrollView.getScrollX() && toY == mScrollView.getScrollY();
    [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);
852 return toX == mScrollView.getScrollX() && toY == mScrollView.getScrollY();
    [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...]
  /external/pdfium/xfa/include/fxgraphics/
fx_graphics.h 333 FX_FLOAT toX,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
LinearLayoutRule.java 418 int toX = x + width / 2;
419 gc.drawLine(fromX, y, toX, y);
    [all...]

Completed in 2102 milliseconds

1 2