Searched defs:downY (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DInteractionController.java340 * @param downY
346 public boolean scrollSwipe(final int downX, final int downY, final int upX, final int upY, argument
348 Log.d(LOG_TAG, "scrollSwipe (" + downX + ", " + downY + ", " + upX + ", "
354 swipe(downX, downY, upX, upY, steps);
387 } else if (downY == upY) {
416 * @param downY
422 public boolean swipe(int downX, int downY, int upX, int upY, int steps) { argument
423 return swipe(downX, downY, upX, upY, steps, false /*drag*/);
429 * @param downY
436 public boolean swipe(int downX, int downY, in argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewScroller.java159 public void fling(float downScrollP, int downY, int y, int velY, int minY, int maxY, argument
162 Log.d(TAG, "fling: " + downScrollP + ", downY: " + downY + ", y: " + y +
166 mFlingDownY = downY;
223 fling(0 /* downScrollP */, 0 /* downY */, algorithm.percentageToScroll(stackScroll),
H A DTaskStackLayoutAlgorithm.java1001 * Maps a movement in screen y, relative to {@param downY}, to a movement in along the arc
1005 public float getDeltaPForY(int downY, int y) { argument
1007 return mTaskStackLowRamLayoutAlgorithm.scrollToPercentage(downY - y);
1009 float deltaP = (float) (y - downY) / mStackRect.height() *

Completed in 73 milliseconds