Searched refs:touchX (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | DismissView.java | 49 public boolean isOnEmptySpace(float touchX, float touchY) { in isOnEmptySpace() argument 50 return touchX < mContent.getX() in isOnEmptySpace() 51 || touchX > mContent.getX() + mContent.getWidth() in isOnEmptySpace()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DragState.java | 183 void broadcastDragStartedLw(final float touchX, final float touchY) { in broadcastDragStartedLw() argument 191 … Slog.d(WindowManagerService.TAG, "broadcasting DRAG_STARTED at (" + touchX + ", " + touchY + ")"); in broadcastDragStartedLw() 198 sendDragStartedLw(windows.get(i), touchX, touchY, mDataDescription); in broadcastDragStartedLw() local 211 private void sendDragStartedLw(WindowState newWin, float touchX, float touchY, in sendDragStartedLw() argument 227 touchX, touchY, null, desc, null, false); in sendDragStartedLw()
|
D | Session.java | 269 float touchX, float touchY, float thumbCenterX, float thumbCenterY, in performDrag() argument 321 mService.mDragState.mCurrentX = touchX; in performDrag() 323 mService.mDragState.broadcastDragStartedLw(touchX, touchY); in performDrag() 335 surfaceControl.setPosition(touchX - thumbCenterX, in performDrag()
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | KeyboardView.java | 1228 int touchX = (int) me.getX() - mPaddingLeft; 1234 int keyIndex = getKeyIndices(touchX, touchY, null); 1263 mStartX = touchX; 1265 mLastCodeX = touchX; 1344 touchX = mLastCodeX; 1351 detectAndSendKey(mCurrentKey, touchX, touchY, eventTime); 1364 mLastX = touchX;
|
/frameworks/base/core/java/android/view/ |
D | IWindowSession.aidl | 153 boolean performDrag(IWindow window, IBinder dragToken, float touchX, float touchY, in performDrag() argument
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
D | BridgeWindowSession.java | 143 float touchX, float touchY, float thumbCenterX, float thumbCenterY, in performDrag() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/ |
D | NotificationStackScrollLayout.java | 663 public ExpandableView getClosestChildAtRawPosition(float touchX, float touchY) { in getClosestChildAtRawPosition() argument 692 public ExpandableView getChildAtRawPosition(float touchX, float touchY) { in getChildAtRawPosition() argument 694 return getChildAtPosition(touchX - mTempInt2[0], touchY - mTempInt2[1]); in getChildAtRawPosition() 697 public ExpandableView getChildAtPosition(float touchX, float touchY) { in getChildAtPosition() argument 716 if (touchY >= top && touchY <= bottom && touchX >= left && touchX <= right) { in getChildAtPosition() 2732 public boolean isBelowLastNotification(float touchX, float touchY) { in isBelowLastNotification() argument 2744 if(!belowChild && !mDismissView.isOnEmptySpace(touchX - mDismissView.getX(), in isBelowLastNotification()
|