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

  /external/webkit/LayoutTests/fast/events/touch/script-tests/
send-oncancel-event.js 3 var touchX = 25;
12 shouldBe("cancelEvent.pageX", touchX.toString());
26 eventSender.addTouchPoint(touchX, touchY);
  /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 86 final int touchX = getTouchX(x);
91 for (final Key key: mKeyboard.getNearestKeys(touchX, touchY)) {
92 final boolean isOnKey = key.isOnKey(touchX, touchY);
93 final int distance = key.squaredDistanceToEdge(touchX, touchY);
  /packages/apps/Phone/src/com/android/phone/
SmallerHitTargetTouchListener.java 84 int touchX = (int) event.getX();
91 int touchXPercent = (int) ((float) (touchX * 100) / (float) viewWidth);
  /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 171 void broadcastDragStartedLw(final float touchX, final float touchY) {
179 Slog.d(WindowManagerService.TAG, "broadcasting DRAG_STARTED at (" + touchX + ", " + touchY + ")");
184 sendDragStartedLw(mService.mWindows.get(i), touchX, touchY, mDataDescription);
196 private void sendDragStartedLw(WindowState newWin, float touchX, float touchY,
212 touchX, touchY, null, desc, null, false);
  /packages/apps/Email/src/com/android/email/activity/
MessageListItem.java 542 int touchX = (int) event.getX();
549 if (touchX < checkRight || touchX > starLeft) {
551 if ((touchX < checkRight) || (touchX > starLeft)) {
563 if (touchX < checkRight) {
566 } else if (touchX > starLeft) {

Completed in 151 milliseconds