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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewScroller.java147 public void fling(float downScrollP, int downY, int y, int velY, int minY, int maxY, argument
150 Log.d(TAG, "fling: " + downScrollP + ", downY: " + downY + ", y: " + y +
154 mFlingDownY = downY;
H A DTaskStackLayoutAlgorithm.java1088 * Maps a movement in screen y, relative to {@param downY}, to a movement in along the arc
1092 public float getDeltaPForY(int downY, int y) { argument
1093 float deltaP = (float) (y - downY) / mStackRect.height() *
/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...]

Completed in 157 milliseconds