Searched refs:touchX (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DDismissView.java58 public boolean isOnEmptySpace(float touchX, float touchY) { argument
59 return touchX < mContent.getX()
60 || touchX > mContent.getX() + mContent.getWidth()
/frameworks/base/services/core/java/com/android/server/wm/
H A DDragState.java249 void broadcastDragStartedLw(final float touchX, final float touchY) { argument
250 mOriginalX = mCurrentX = touchX;
272 Slog.d(TAG_WM, "broadcasting DRAG_STARTED at (" + touchX + ", " + touchY + ")");
276 sendDragStartedLw(w, touchX, touchY, mDataDescription);
288 private void sendDragStartedLw(WindowState newWin, float touchX, float touchY, argument
292 touchX, touchY, null, desc, null, null, false);
H A DSession.java317 int touchSource, float touchX, float touchY, float thumbCenterX, float thumbCenterY,
347 // will let us eliminate the (touchX,touchY) parameters from the API.
369 mService.mDragState.broadcastDragStartedLw(touchX, touchY);
382 surfaceControl.setPosition(touchX - thumbCenterX,
393 mService.mDragState.notifyLocationLw(touchX, touchY);
316 performDrag(IWindow window, IBinder dragToken, int touchSource, float touchX, float touchY, float thumbCenterX, float thumbCenterY, ClipData data) argument
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java139 int touchSource, float touchX, float touchY, float thumbCenterX, float thumbCenterY,
138 performDrag(IWindow window, IBinder dragToken, int touchSource, float touchX, float touchY, float thumbCenterX, float thumbCenterY, ClipData data) argument
/frameworks/base/core/java/android/view/
H A DIWindowSession.aidl161 float touchX, float touchY, float thumbCenterX, float thumbCenterY, in ClipData data);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java1219 int touchX = (int) me.getX() - mPaddingLeft;
1225 int keyIndex = getKeyIndices(touchX, touchY, null);
1254 mStartX = touchX;
1256 mLastCodeX = touchX;
1335 touchX = mLastCodeX;
1342 detectAndSendKey(mCurrentKey, touchX, touchY, eventTime);
1355 mLastX = touchX;
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerView.java892 private int calculatePosition(int touchX, int touchY) { argument
893 return isHorizontalDivision() ? calculateYPosition(touchY) : calculateXPosition(touchX);
900 private int calculateXPosition(int touchX) { argument
901 return mStartPosition + touchX - mStartX;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java1047 public ExpandableView getClosestChildAtRawPosition(float touchX, float touchY) { argument
1077 public ExpandableView getChildAtRawPosition(float touchX, float touchY) { argument
1079 return getChildAtPosition(touchX - mTempInt2[0], touchY - mTempInt2[1]);
1083 public ExpandableView getChildAtPosition(float touchX, float touchY) { argument
1084 return getChildAtPosition(touchX, touchY, true /* requireMinHeight */);
1091 * @param touchX the x coordinate
1096 private ExpandableView getChildAtPosition(float touchX, float touchY, argument
1117 && touchY >= top && touchY <= bottom && touchX >= left && touchX <= right) {
3987 public boolean isBelowLastNotification(float touchX, floa argument
[all...]

Completed in 226 milliseconds