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

  /external/webkit/LayoutTests/fast/events/touch/script-tests/
send-oncancel-event.js 4 var touchY = 25;
13 shouldBe("cancelEvent.pageY", touchY.toString());
26 eventSender.addTouchPoint(touchX, touchY);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
MoreKeysDetector.java 38 final int touchY = getTouchY(y);
43 final int dist = key.squaredDistanceToEdge(touchX, touchY);
KeyDetector.java 97 final int touchY = getTouchY(y);
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/Phone/src/com/android/phone/
SmallerHitTargetTouchListener.java 65 final int touchY = (int) event.getY();
94 touchY < minTouchY || touchY > maxTouchY) {
  /packages/inputmethods/LatinIME/native/jni/src/
proximity_info.cpp 150 const float touchY = static_cast<float>(y);
152 return ProximityInfoUtils::getSquaredDistanceFloat(centerX, centerY, touchX, touchY)
  /packages/apps/DeskClock/src/com/android/deskclock/widget/swipeablelistview/
SwipeableListView.java 122 int touchY = (int) ev.getY();
130 if (touchY >= slidingChild.getTop() && touchY <= slidingChild.getBottom()) {
  /frameworks/base/services/java/com/android/server/wm/
DragState.java 182 void broadcastDragStartedLw(final float touchX, final float touchY) {
190 Slog.d(WindowManagerService.TAG, "broadcasting DRAG_STARTED at (" + touchX + ", " + touchY + ")");
197 sendDragStartedLw(windows.get(i), touchX, touchY, mDataDescription);
210 private void sendDragStartedLw(WindowState newWin, float touchX, float touchY,
226 touchX, touchY, null, desc, null, false);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java     [all...]

Completed in 5737 milliseconds