Searched defs:touchX (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DDismissView.java49 public boolean isOnEmptySpace(float touchX, float touchY) { argument
50 return touchX < mContent.getX()
51 || touchX > mContent.getX() + mContent.getWidth()
/frameworks/base/services/core/java/com/android/server/wm/
H A DDragState.java181 void broadcastDragStartedLw(final float touchX, final float touchY) { argument
189 Slog.d(WindowManagerService.TAG, "broadcasting DRAG_STARTED at (" + touchX + ", " + touchY + ")");
196 sendDragStartedLw(windows.get(i), touchX, touchY, mDataDescription);
209 private void sendDragStartedLw(WindowState newWin, float touchX, float touchY, argument
225 touchX, touchY, null, desc, null, false);
H A DSession.java268 float touchX, float touchY, float thumbCenterX, float thumbCenterY,
298 // will let us eliminate the (touchX,touchY) parameters from the API.
320 mService.mDragState.mCurrentX = touchX;
322 mService.mDragState.broadcastDragStartedLw(touchX, touchY);
334 surfaceControl.setPosition(touchX - thumbCenterX,
267 performDrag(IWindow window, IBinder dragToken, float touchX, float touchY, float thumbCenterX, float thumbCenterY, ClipData data) argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java143 float touchX, float touchY, float thumbCenterX, float thumbCenterY,
142 performDrag(IWindow window, IBinder dragToken, float touchX, float touchY, float thumbCenterX, float thumbCenterY, ClipData data) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java594 public ExpandableView getClosestChildAtRawPosition(float touchX, float touchY) { argument
623 public ExpandableView getChildAtRawPosition(float touchX, float touchY) { argument
625 return getChildAtPosition(touchX - mTempInt2[0], touchY - mTempInt2[1]);
628 public ExpandableView getChildAtPosition(float touchX, float touchY) { argument
647 if (touchY >= top && touchY <= bottom && touchX >= left && touchX <= right) {
2402 private boolean isBelowLastNotification(float touchX, float touchY) { argument
2415 && mDismissView.isOnEmptySpace(touchX - mDismissView.getX(),

Completed in 136 milliseconds