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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysDetector.java 37 final int touchX = getTouchX(x);
43 final int dist = key.squaredDistanceToEdge(touchX, touchY);
KeyDetector.java 96 final int touchX = getTouchX(x);
101 for (final Key key: mKeyboard.getNearestKeys(touchX, touchY)) {
104 if (!key.isOnKey(touchX, touchY)) {
107 final int distance = key.squaredDistanceToEdge(touchX, touchY);
  /packages/apps/InCallUI/src/com/android/incallui/
SmallerHitTargetTouchListener.java 63 final int touchX = (int) event.getX();
92 if (touchX < minTouchX || touchX > maxTouchX ||
  /packages/services/Telephony/src/com/android/phone/
SmallerHitTargetTouchListener.java 64 final int touchX = (int) event.getX();
93 if (touchX < minTouchX || touchX > maxTouchX ||
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info.cpp 140 const float touchX = static_cast<float>(x);
142 return ProximityInfoUtils::getSquaredDistanceFloat(centerX, centerY, touchX, touchY)
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
CandidateView.java 175 final int touchX = mTouchX;
189 if (touchX + scrollX >= x && touchX + scrollX < x + wordWidth && !scrolled) {
  /frameworks/base/services/java/com/android/server/wm/
DragState.java 183 void broadcastDragStartedLw(final float touchX, final float touchY) {
191 Slog.d(WindowManagerService.TAG, "broadcasting DRAG_STARTED at (" + touchX + ", " + touchY + ")");
198 sendDragStartedLw(windows.get(i), touchX, touchY, mDataDescription);
211 private void sendDragStartedLw(WindowState newWin, float touchX, float touchY,
227 touchX, touchY, null, desc, null, false);

Completed in 2556 milliseconds