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

/frameworks/base/services/core/java/com/android/server/wm/
H A DDragState.java182 void broadcastDragStartedLw(final float touchX, final float touchY) { argument
190 Slog.d(WindowManagerService.TAG, "broadcasting DRAG_STARTED at (" + touchX + ", " + touchY + ")");
197 sendDragStartedLw(windows.get(i), touchX, touchY, mDataDescription);
210 private void sendDragStartedLw(WindowState newWin, float touchX, float touchY, argument
226 touchX, touchY, null, desc, null, false);
H A DSession.java267 float touchX, float touchY, float thumbCenterX, float thumbCenterY,
297 // will let us eliminate the (touchX,touchY) parameters from the API.
319 mService.mDragState.mCurrentX = touchX;
321 mService.mDragState.broadcastDragStartedLw(touchX, touchY);
333 surfaceControl.setPosition(touchX - thumbCenterX,
266 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.java573 public ExpandableView getChildAtRawPosition(float touchX, float touchY) { argument
576 return getChildAtPosition(touchX - location[0], touchY - location[1]);
579 public ExpandableView getChildAtPosition(float touchX, float touchY) { argument
596 if (touchY >= top && touchY <= bottom && touchX >= left && touchX <= right) {

Completed in 98 milliseconds