/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | FooterView.java | 69 public boolean isOnEmptySpace(float touchX, float touchY) { in isOnEmptySpace() argument 70 return touchX < mContent.getX() in isOnEmptySpace() 71 || touchX > mContent.getX() + mContent.getWidth() in isOnEmptySpace()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DragDropController.java | 92 int flags, SurfaceControl surface, int touchSource, float touchX, float touchY, in performDrag() argument 101 touchSource, touchX, touchY, thumbCenterX, thumbCenterY, data); in performDrag() 161 mDragState.broadcastDragStartedLocked(touchX, touchY); in performDrag() 174 surfaceControl, touchX - thumbCenterX, touchY - thumbCenterY); in performDrag() 183 mDragState.notifyLocationLocked(touchX, touchY); in performDrag()
|
D | DragState.java | 351 void broadcastDragStartedLocked(final float touchX, final float touchY) { in broadcastDragStartedLocked() argument 352 mOriginalX = mCurrentX = touchX; in broadcastDragStartedLocked() 368 Slog.d(TAG_WM, "broadcasting DRAG_STARTED at (" + touchX + ", " + touchY + ")"); in broadcastDragStartedLocked() 372 sendDragStartedLocked(w, touchX, touchY, mDataDescription); in broadcastDragStartedLocked() 384 private void sendDragStartedLocked(WindowState newWin, float touchX, float touchY, in sendDragStartedLocked() argument 388 touchX, touchY, null, desc, null, null, false); in sendDragStartedLocked()
|
D | WindowManagerInternal.java | 178 int touchSource, float touchX, float touchY, float thumbCenterX, float thumbCenterY, in prePerformDrag() argument
|
D | Session.java | 279 float touchX, float touchY, float thumbCenterX, float thumbCenterY, ClipData data) { in performDrag() argument 283 flags, surface, touchSource, touchX, touchY, thumbCenterX, thumbCenterY, data); in performDrag()
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | KeyboardView.java | 1231 int touchX = (int) me.getX() - mPaddingLeft; 1237 int keyIndex = getKeyIndices(touchX, touchY, null); 1266 mStartX = touchX; 1268 mLastCodeX = touchX; 1347 touchX = mLastCodeX; 1354 detectAndSendKey(mCurrentKey, touchX, touchY, eventTime); 1367 mLastX = touchX;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | HeadsUpTouchHelper.java | 182 ExpandableView getChildAtRawPosition(float touchX, float touchY); in getChildAtRawPosition() argument
|
/frameworks/base/core/java/android/view/ |
D | IWindowSession.aidl | 196 float touchX, float touchY, float thumbCenterX, float thumbCenterY, in ClipData data); in performDrag() argument
|
D | WindowlessWindowManager.java | 330 android.view.SurfaceControl surface, int touchSource, float touchX, float touchY, in performDrag() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayout.java | 1639 public ExpandableView getClosestChildAtRawPosition(float touchX, float touchY) { 1669 private ExpandableView getChildAtPosition(float touchX, float touchY) { 1671 touchX, touchY, true /* requireMinHeight */, true /* ignoreDecors */); 1684 private ExpandableView getChildAtPosition(float touchX, float touchY, 1705 && touchY >= top && touchY <= bottom && touchX >= left && touchX <= right) { 1724 public ExpandableView getChildAtRawPosition(float touchX, float touchY) { 1726 return getChildAtPosition(touchX - mTempInt2[0], touchY - mTempInt2[1]); 5154 public boolean isBelowLastNotification(float touchX, float touchY) { 5167 if (!belowChild && !mFooterView.isOnEmptySpace(touchX - mFooterView.getX(), 6742 public ExpandableView getChildAtRawPosition(float touchX, float touchY) { [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/ |
D | DividerView.java | 987 private int calculatePosition(int touchX, int touchY) { in calculatePosition() argument 988 return isHorizontalDivision() ? calculateYPosition(touchY) : calculateXPosition(touchX); in calculatePosition() 995 private int calculateXPosition(int touchX) { in calculateXPosition() argument 996 return mStartPosition + touchX - mStartX; in calculateXPosition()
|