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.java320 * @param touchY the y coordinate the user touched in DragLayer coordinates
322 public void show(int touchX, int touchY) { argument
331 move(touchX, touchY);
351 * @param touchY the y coordinate the user touched in DragLayer coordinates
353 public void move(int touchX, int touchY) { argument
355 mLastTouchY = touchY;

Completed in 1027 milliseconds