HomeSort by relevance Sort by last modified time
    Searched refs:fromY (Results 1 - 25 of 52) 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;
120 fromY = searchRange;
135 fromY = pCurrPointPos->y - pRefRect->y;
144 pDstMV->dy = -fromY;
146 for (y = -fromY; y <= toY; y++)
armVCM4P2_BlockMatch_Half.c 93 OMX_INT minSAD, fromX, toX, fromY, toY;
127 fromY = 1;
141 fromY = 0;
150 for (y = -fromY; y <= toY; y++)
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
TouchUtils.java 177 float fromY = xy[1] + (viewHeight / 2.0f);
180 drag(inst, x, x, fromY, toY, stepCount);
223 final int fromY = xy[1];
226 int deltaY = fromY - toY;
229 drag(inst, fromX, toX, fromY, toY, calculateStepsForDistance(distance));
240 final int fromY = xy[1];
244 drag(inst, fromX, toX, fromY, fromY, calculateStepsForDistance(deltaX));
255 final int fromY = xy[1];
257 int deltaY = fromY - toY
    [all...]
  /frameworks/base/test-runner/src/android/test/
TouchUtils.java 67 final float fromY = size.y * 0.5f;
70 drag(test, x, x, fromY, toY, 4);
97 final float fromY = size.y * 0.5f;
100 drag(test, x, x, fromY, toY, 4);
234 float fromY = xy[1] + (viewHeight / 2.0f);
237 drag(test, x, x, fromY, toY, stepCount);
477 float fromY = xy[1] + (viewHeight / 2.0f);
480 drag(test, x, x, fromY, toY, stepCount);
571 final int fromY = xy[1];
575 drag(test, fromX, fromX + deltaX, fromY, fromY + deltaY, distance)
    [all...]
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRDetector.h 38 int32_t fromY,
42 int32_t fromY,
BC_QRDetector.cpp 188 int32_t fromY,
191 FX_FLOAT result = SizeOfBlackWhiteBlackRun(fromX, fromY, toX, toY);
198 int32_t otherToY = fromY - (toY - fromY);
204 result += SizeOfBlackWhiteBlackRun(fromX, fromY, otherToX, otherToY);
208 int32_t fromY,
211 FX_BOOL steep = FXSYS_abs(toY - fromY) > FXSYS_abs(toX - fromX);
214 fromX = fromY;
215 fromY = temp;
221 int32_t dy = FXSYS_abs(toY - fromY);
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_BlockMatch_Integer.c 110 OMX_INT fromX, toX, fromY, toY;
150 fromY = nSearchRange;
165 fromY = pCurrPointPos->y - pRefRect->y;
174 pBestMV->dy = -fromY * 4;
179 for (y = -fromY; y <= toY; y++)
omxVCM4P10_BlockMatch_Half.c 107 OMX_INT fromX, toX, fromY, toY;
134 fromY = 1;
144 for (y = -fromY; y <= toY; y++)
omxVCM4P10_BlockMatch_Quarter.c 107 OMX_INT fromX, toX, fromY, toY;
135 fromY = 1;
145 for (y = -fromY; y <= toY; y++)
  /frameworks/base/core/java/android/view/animation/
ScaleAnimation.java 141 * @param fromY Vertical scaling factor to apply at the start of the
145 public ScaleAnimation(float fromX, float toX, float fromY, float toY) {
149 mFromY = fromY;
161 * @param fromY Vertical scaling factor to apply at the start of the
171 public ScaleAnimation(float fromX, float toX, float fromY, float toY,
176 mFromY = fromY;
192 * @param fromY Vertical scaling factor to apply at the start of the
212 public ScaleAnimation(float fromX, float toX, float fromY, float toY,
217 mFromY = fromY;
  /frameworks/base/services/core/java/com/android/server/policy/
SystemGesturesPointerEventListener.java 217 final float fromY = mDownY[i];
220 + " moved (" + fromX + "->" + x + "," + fromY + "->" + y + ") in " + elapsed);
221 if (fromY <= mSwipeStartThreshold
222 && y > fromY + mSwipeDistanceThreshold
226 if (fromY >= screenHeight - mSwipeStartThreshold
227 && y < fromY - 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) {
60 this.fromY = fromY;
68 public int fromX, fromY, toX, toY;
75 int fromX, int fromY, int toX, int toY) {
78 this.fromY = fromY;
89 ", fromY=" + fromY
    [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 338 int32_t fromY = (int32_t)from->GetY();
341 FX_BOOL steep = FXSYS_abs(toY - fromY) > FXSYS_abs(toX - fromX);
344 fromX = fromY;
345 fromY = temp;
351 int32_t dy = FXSYS_abs(toY - fromY);
353 int32_t ystep = fromY < toY ? 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/Contacts/src/com/android/contacts/editor/
EditorAnimator.java 202 private static void translateViews(List<Animator> animators, List<View> views, float fromY,
207 ObjectAnimator.ofFloat(child, View.TRANSLATION_Y, fromY, toY);
  /packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java 464 final int fromY = r.top;
466 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY,
519 final int fromY = r.top;
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 +
538 view.getMeasuredWidth(), fromY + view.getMeasuredHeight());
  /packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
DragLayer.java 686 final int fromY = r.top;
688 animateViewIntoPosition(dragView, fromX, fromY, pos[0], pos[1], alpha, 1, 1, scaleX, scaleY,
750 final int fromY = r.top;
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 +
769 view.getMeasuredWidth(), fromY + view.getMeasuredHeight());
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
HorizontalScrollViewTest.java 796 final int fromY, final int toY) {
798 if (fromX == toX && fromY == toY) {
802 if (fromY != toY) {
806 return isInRange(mScrollView.getScrollY(), fromY, toY);
    [all...]
ScrollViewTest.java 825 final int fromY, final int toY) {
827 if (fromX == toX && fromY == toY) {
831 if (fromY != toY) {
835 return isInRange(mScrollView.getScrollY(), fromY, toY);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageShow.java 687 int fromY, int toY, int delay) {
688 if (fromX == toX && fromY == toY) {
698 mAnimatorTranslateY = ValueAnimator.ofInt(fromY, toY);
    [all...]

Completed in 527 milliseconds

1 2 3