Searched defs:touchY (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DDragView.java246 * @param touchY the y coordinate the user touched in DragLayer coordinates
248 public void show(int touchX, int touchY) { argument
258 setTranslationY(touchY - mRegistrationY);
282 * @param touchY the y coordinate the user touched in DragLayer coordinates
284 void move(int touchX, int touchY) { argument
286 setTranslationY(touchY - mRegistrationY + (int) mOffsetY);
H A DCellLayout.java711 public void setTagToCellInfoForPoint(int touchX, int touchY) { argument
715 final int y = touchY + getScrollY();
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
H A Dproximity_info.cpp134 const float touchY = static_cast<float>(y); local
135 return ProximityInfoUtils::getSquaredDistanceFloat(centerX, centerY, touchX, touchY)
/packages/apps/Launcher3/src/com/android/launcher3/dragndrop/
H A DDragView.java539 * @param touchY the y coordinate the user touched in DragLayer coordinates
541 public void show(int touchX, int touchY) { argument
550 move(touchX, touchY);
570 * @param touchY the y coordinate the user touched in DragLayer coordinates
572 public void move(int touchX, int touchY) { argument
573 if (touchX > 0 && touchY > 0 && mLastTouchX > 0 && mLastTouchY > 0
576 mTranslateY.animateToPos(mLastTouchY - touchY);
579 mLastTouchY = touchY;

Completed in 1006 milliseconds