Searched defs:touchY (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
52 || touchY < mContent.getY()
53 || touchY > mContent.getY() + mContent.getHeight();
/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.
321 mService.mDragState.mCurrentY = touchY;
322 mService.mDragState.broadcastDragStartedLw(touchX, touchY);
335 touchY - thumbCenterY);
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
596 float localTouchY = touchY - mTempInt2[1];
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
2405 return touchY > mIntrinsicPadding;
2408 return touchY > lastChildNotGon
[all...]

Completed in 444 milliseconds