/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | FooterView.java | 68 public boolean isOnEmptySpace(float touchX, float touchY) { in isOnEmptySpace() argument 69 return touchX < mContent.getX() in isOnEmptySpace() 70 || touchX > mContent.getX() + mContent.getWidth() in isOnEmptySpace()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DragDropController.java | 91 int flags, SurfaceControl surface, int touchSource, float touchX, float touchY, in performDrag() argument 100 touchSource, touchX, touchY, thumbCenterX, thumbCenterY, data); in performDrag() 160 mDragState.broadcastDragStartedLocked(touchX, touchY); in performDrag() 174 surfaceControl, touchX - thumbCenterX, touchY - thumbCenterY); in performDrag() 183 mDragState.notifyLocationLocked(touchX, touchY); in performDrag()
|
D | DragState.java | 365 void broadcastDragStartedLocked(final float touchX, final float touchY) { in broadcastDragStartedLocked() argument 366 mOriginalX = mCurrentX = touchX; in broadcastDragStartedLocked() 382 Slog.d(TAG_WM, "broadcasting DRAG_STARTED at (" + touchX + ", " + touchY + ")"); in broadcastDragStartedLocked() 386 sendDragStartedLocked(w, touchX, touchY, mDataDescription); in broadcastDragStartedLocked() 398 private void sendDragStartedLocked(WindowState newWin, float touchX, float touchY, in sendDragStartedLocked() argument 402 touchX, touchY, null, desc, null, null, false); in sendDragStartedLocked()
|
D | WindowManagerInternal.java | 168 int touchSource, float touchX, float touchY, float thumbCenterX, float thumbCenterY, in prePerformDrag() argument
|
D | Session.java | 263 float touchX, float touchY, float thumbCenterX, float thumbCenterY, ClipData data) { in performDrag() argument 269 flags, surface, touchSource, touchX, touchY, thumbCenterX, thumbCenterY, data); in performDrag()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | HeadsUpTouchHelper.java | 178 ExpandableView getChildAtRawPosition(float touchX, float touchY);
|
/frameworks/base/core/java/android/view/ |
D | IWindowSession.aidl | 179 float touchX, float touchY, float thumbCenterX, float thumbCenterY, in ClipData data); in performDrag() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayout.java | 1514 public ExpandableView getClosestChildAtRawPosition(float touchX, float touchY) { 1544 private ExpandableView getChildAtPosition(float touchX, float touchY) { 1545 return getChildAtPosition(touchX, touchY, true /* requireMinHeight */); 1558 private ExpandableView getChildAtPosition(float touchX, float touchY, 1579 && touchY >= top && touchY <= bottom && touchX >= left && touchX <= right) { 1598 public ExpandableView getChildAtRawPosition(float touchX, float touchY) { 1600 return getChildAtPosition(touchX - mTempInt2[0], touchY - mTempInt2[1]); 4981 public boolean isBelowLastNotification(float touchX, float touchY) { 4994 if (!belowChild && !mFooterView.isOnEmptySpace(touchX - mFooterView.getX(), 6408 public ExpandableView getChildAtRawPosition(float touchX, float touchY) { [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/ |
D | DividerView.java | 952 private int calculatePosition(int touchX, int touchY) { in calculatePosition() argument 953 return isHorizontalDivision() ? calculateYPosition(touchY) : calculateXPosition(touchX); in calculatePosition() 960 private int calculateXPosition(int touchX) { in calculateXPosition() argument 961 return mStartPosition + touchX - mStartX; in calculateXPosition()
|