HomeSort by relevance Sort by last modified time
    Searched defs:touchY (Results 1 - 6 of 6) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysDetector.java 42 final int touchY = getTouchY(y);
47 final int dist = key.squaredDistanceToEdge(touchX, touchY);
KeyDetector.java 93 final int touchY = getTouchY(y);
97 for (final Key key: mKeyboard.getNearestKeys(touchX, touchY)) {
100 if (!key.isOnKey(touchX, touchY)) {
103 final int distance = key.squaredDistanceToEdge(touchX, touchY);
  /packages/apps/InCallUI/src/com/android/incallui/
SmallerHitTargetTouchListener.java 64 final int touchY = (int) event.getY();
93 touchY < minTouchY || touchY > maxTouchY) {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info.cpp 141 const float touchY = static_cast<float>(y);
142 return ProximityInfoUtils::getSquaredDistanceFloat(centerX, centerY, touchX, touchY)
  /frameworks/base/services/core/java/com/android/server/wm/
DragState.java 181 void broadcastDragStartedLw(final float touchX, final float touchY) {
189 Slog.d(WindowManagerService.TAG, "broadcasting DRAG_STARTED at (" + touchX + ", " + touchY + ")");
196 sendDragStartedLw(windows.get(i), touchX, touchY, mDataDescription);
209 private void sendDragStartedLw(WindowState newWin, float touchX, float touchY,
225 touchX, touchY, null, desc, null, false);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SwipeableListView.java 187 final int touchY = (int) ev.getY();
195 if (touchY >= slidingChild.getTop() && touchY <= slidingChild.getBottom()) {

Completed in 285 milliseconds