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

1 2 3

  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardItemAnimator.java 26 public boolean animateChange(ViewHolder oldHolder, ViewHolder newHolder, int fromX, int fromY,
33 fromX += ViewCompat.getTranslationX(oldHolder.itemView);
37 if (fromX == toX && fromY == toY) {
42 return super.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
CarItemAnimator.java 35 RecyclerView.ViewHolder newHolder, int fromX, int fromY, int toX, int toY) {
43 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 221 final int fromX = xy[0];
224 int deltaX = fromX - toX;
228 drag(inst, fromX, toX, fromY, toY, calculateStepsForDistance(distance));
238 final int fromX = xy[0];
241 int deltaX = fromX - toX;
243 drag(inst, fromX, toX, fromY, fromY, calculateStepsForDistance(deltaX));
253 final int fromX = xy[0];
258 drag(inst, fromX, fromX, fromY, toY, calculateStepsForDistance(deltaY));
264 public static void drag(Instrumentation inst, float fromX, float toX, float fromY
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
DefaultItemAnimator.java 60 public int fromX, fromY, toX, toY;
62 MoveInfo(ViewHolder holder, int fromX, int fromY, int toX, int toY) {
64 this.fromX = fromX;
73 public int fromX, fromY, toX, toY;
80 int fromX, int fromY, int toX, int toY) {
82 this.fromX = fromX;
93 + ", fromX=" + fromX
    [all...]
SimpleItemAnimator.java 234 public abstract boolean animateMove(ViewHolder holder, int fromX, int fromY,
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DefaultItemAnimator.java 59 public int fromX, fromY, toX, toY;
61 MoveInfo(ViewHolder holder, int fromX, int fromY, int toX, int toY) {
63 this.fromX = fromX;
72 public int fromX, fromY, toX, toY;
79 int fromX, int fromY, int toX, int toY) {
81 this.fromX = fromX;
92 + ", fromX=" + 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/support/wear/tests/src/android/support/wear/widget/
ScrollManagerTest.java 122 private static void scroll(ScrollManager scrollManager, float fromX, float toX, float fromY,
128 float x = fromX;
131 float xStep = (toX - fromX) / STEP_COUNT;
149 private static void scrollOnArch(ScrollManager scrollManager, float fromX, float fromY,
155 double relativeX = fromX - (TEST_WIDTH / 2);
158 float angle = getAngle(fromX, fromY, TEST_WIDTH, TEST_HEIGHT);
161 float x = fromX;
  /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
  /packages/apps/Car/Dialer/src/com/android/car/dialer/
StrequentsItemAnimator.java 51 public int fromX, fromY, toX, toY;
53 private MoveInfo(ViewHolder holder, int fromX, int fromY, int toX, int toY) {
55 this.fromX = fromX;
64 public int fromX, fromY, toX, toY;
71 int fromX, int fromY, int toX, int toY) {
73 this.fromX = fromX;
84 ", fromX=" + fromX
    [all...]
  /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 351 boolean animateMove(final RecyclerView.ViewHolder vh, final int fromX, final int fromY,
357 result[0] = mAnimator.animateMove(vh, fromX, fromY, toX, toY);
365 final int fromX, final int fromY, final int toX, final int toY) throws Throwable {
370 result[0] = mAnimator.animateChange(oldHolder, newHolder, fromX, fromY, toX, toY);
  /frameworks/base/services/core/java/com/android/server/wm/
AppTransition.java     [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
ScaleAnimationTest.java 171 public MyScaleAnimation(float fromX, float toX, float fromY, float toY,
173 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 567 final int fromX = r.left;
570 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY,
631 final int fromX = r.left;
642 animateViewIntoPosition(dragView, fromX, fromY, toX, toY, 1, 1, 1, toScale, toScale,
646 public void animateViewIntoPosition(final DragView view, final int fromX, final int fromY,
650 Rect from = new Rect(fromX, fromY, fromX +
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
ItemAnimator.java 103 public boolean animateMove(final ViewHolder holder, int fromX, int fromY, int toX, int toY) {
106 final int deltaX = toX - fromX;
  /cts/tests/tests/widget/src/android/widget/cts/
HorizontalScrollViewTest.java 779 private void pollingCheckSmoothScrolling(final int fromX, final int toX,
782 if (fromX == toX && fromY == toY) {
790 if (fromX != toX) {
791 PollingCheck.waitFor(() -> isInRange(mScrollViewCustom.getScrollX(), fromX, toX));
    [all...]
ScrollViewTest.java 810 private void pollingCheckSmoothScrolling(final int fromX, final int toX,
813 if (fromX == toX && fromY == toY) {
821 if (fromX != toX) {
822 PollingCheck.waitFor(() -> isInRange(mScrollViewCustom.getScrollX(), fromX, toX));
    [all...]

Completed in 1043 milliseconds

1 2 3