HomeSort by relevance Sort by last modified time
    Searched defs:touchX (Results 1 - 8 of 8) 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 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/Phone/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/
proximity_info.cpp 149 const float touchX = static_cast<float>(x);
152 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 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/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 186 milliseconds