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 85 int touchY = (int) event.getY();
92 int touchYPercent = (int) ((float) (touchY * 100) / (float) viewHeight);
  /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()) {
  /packages/inputmethods/LatinIME/native/jni/src/
proximity_info.cpp 154 const float touchY = static_cast<float>(y);
156 return getNormalizedSquaredDistanceFloat(centerX, centerY, touchX, touchY, keyWidth);
  /frameworks/base/services/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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java     [all...]

Completed in 223 milliseconds