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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyDetector.java 93 final int touchY = getTouchY(y);
97 for (final Key key: mKeyboard.getNearestKeys(touchX, touchY)) {
100 if (!key.isOnKey(touchX, touchY)) {
103 final int distance = key.squaredDistanceToEdge(touchX, touchY);
MoreKeysDetector.java 42 final int touchY = getTouchY(y);
47 final int dist = key.squaredDistanceToEdge(touchX, touchY);
  /packages/apps/InCallUI/src/com/android/incallui/
SmallerHitTargetTouchListener.java 64 final int touchY = (int) event.getY();
93 touchY < minTouchY || touchY > maxTouchY) {
  /packages/services/Telephony/src/com/android/phone/
SmallerHitTargetTouchListener.java 65 final int touchY = (int) event.getY();
94 touchY < minTouchY || touchY > maxTouchY) {
  /packages/apps/Launcher2/src/com/android/launcher2/
DragView.java 246 * @param touchY the y coordinate the user touched in DragLayer coordinates
248 public void show(int touchX, int touchY) {
258 setTranslationY(touchY - mRegistrationY);
282 * @param touchY the y coordinate the user touched in DragLayer coordinates
284 void move(int touchX, int touchY) {
286 setTranslationY(touchY - mRegistrationY + (int) mOffsetY);
CellLayout.java 711 public void setTagToCellInfoForPoint(int touchX, int touchY) {
715 final int y = touchY + getScrollY();
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
DragView.java 255 * @param touchY the y coordinate the user touched in DragLayer coordinates
257 public void show(int touchX, int touchY) {
267 setTranslationY(touchY - mRegistrationY);
291 * @param touchY the y coordinate the user touched in DragLayer coordinates
293 void move(int touchX, int touchY) {
295 setTranslationY(touchY - mRegistrationY + (int) mOffsetY);
  /frameworks/base/services/core/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);
Session.java 267 float touchX, float touchY, float thumbCenterX, float thumbCenterY,
297 // will let us eliminate the (touchX,touchY) parameters from the API.
320 mService.mDragState.mCurrentY = touchY;
321 mService.mDragState.broadcastDragStartedLw(touchX, touchY);
334 touchY - thumbCenterY);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info.cpp 141 const float touchY = static_cast<float>(y);
142 return ProximityInfoUtils::getSquaredDistanceFloat(centerX, centerY, touchX, touchY)
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SwipeableListView.java 160 final int touchY = (int) ev.getY();
168 if (touchY >= slidingChild.getTop() && touchY <= slidingChild.getBottom()) {
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeWindowSession.java 143 float touchX, float touchY, float thumbCenterX, float thumbCenterY,
  /frameworks/base/core/java/android/view/
IWindowSession.aidl 150 boolean performDrag(IWindow window, IBinder dragToken, float touchX, float touchY,
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java     [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
NotificationStackScrollLayout.java 573 public ExpandableView getChildAtRawPosition(float touchX, float touchY) {
576 return getChildAtPosition(touchX - location[0], touchY - location[1]);
579 public ExpandableView getChildAtPosition(float touchX, float touchY) {
596 if (touchY >= top && touchY <= bottom && touchX >= left && touchX <= right) {
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemView.java     [all...]

Completed in 2424 milliseconds