Home
last modified time | relevance | path

Searched refs:touchY (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DDismissView.java53 public boolean isOnEmptySpace(float touchX, float touchY) { in isOnEmptySpace() argument
56 || touchY < mContent.getY() in isOnEmptySpace()
57 || touchY > mContent.getY() + mContent.getHeight(); in isOnEmptySpace()
/frameworks/base/services/core/java/com/android/server/wm/
DDragState.java249 void broadcastDragStartedLw(final float touchX, final float touchY) { in broadcastDragStartedLw() argument
251 mOriginalY = mCurrentY = touchY; in broadcastDragStartedLw()
272 Slog.d(TAG_WM, "broadcasting DRAG_STARTED at (" + touchX + ", " + touchY + ")"); in broadcastDragStartedLw()
276 sendDragStartedLw(w, touchX, touchY, mDataDescription); in broadcastDragStartedLw()
288 private void sendDragStartedLw(WindowState newWin, float touchX, float touchY, in sendDragStartedLw() argument
292 touchX, touchY, null, desc, null, null, false); in sendDragStartedLw()
DSession.java296 int touchSource, float touchX, float touchY, float thumbCenterX, float thumbCenterY, in performDrag() argument
348 mService.mDragState.broadcastDragStartedLw(touchX, touchY); in performDrag()
362 touchY - thumbCenterY); in performDrag()
372 mService.mDragState.notifyLocationLw(touchX, touchY); in performDrag()
/frameworks/base/core/java/android/inputmethodservice/
DKeyboardView.java1220 int touchY = (int) me.getY() - mPaddingTop;
1221 if (touchY >= -mVerticalCorrection)
1222 touchY += mVerticalCorrection;
1225 int keyIndex = getKeyIndices(touchX, touchY, null);
1255 mStartY = touchY;
1257 mLastCodeY = touchY;
1336 touchY = mLastCodeY;
1342 detectAndSendKey(mCurrentKey, touchX, touchY, eventTime);
1356 mLastY = touchY;
/frameworks/base/core/java/android/view/
DIWindowSession.aidl161 float touchX, float touchY, float thumbCenterX, float thumbCenterY, in ClipData data); in performDrag() argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeWindowSession.java139 int touchSource, float touchX, float touchY, float thumbCenterX, float thumbCenterY, in performDrag() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DNotificationStackScrollLayout.java1033 public ExpandableView getClosestChildAtRawPosition(float touchX, float touchY) { in getClosestChildAtRawPosition() argument
1035 float localTouchY = touchY - mTempInt2[1]; in getClosestChildAtRawPosition()
1063 public ExpandableView getChildAtRawPosition(float touchX, float touchY) { in getChildAtRawPosition() argument
1065 return getChildAtPosition(touchX - mTempInt2[0], touchY - mTempInt2[1]); in getChildAtRawPosition()
1069 public ExpandableView getChildAtPosition(float touchX, float touchY) { in getChildAtPosition() argument
1088 if (touchY >= top && touchY <= bottom && touchX >= left && touchX <= right) { in getChildAtPosition()
1098 return row.getViewAtPosition(touchY - childTop); in getChildAtPosition()
3909 public boolean isBelowLastNotification(float touchX, float touchY) { in isBelowLastNotification() argument
3915 if (childTop > touchY) { in isBelowLastNotification()
3919 boolean belowChild = touchY > childTop + child.getActualHeight() in isBelowLastNotification()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
DDividerView.java885 private int calculatePosition(int touchX, int touchY) { in calculatePosition() argument
886 return isHorizontalDivision() ? calculateYPosition(touchY) : calculateXPosition(touchX); in calculatePosition()
897 private int calculateYPosition(int touchY) { in calculateYPosition() argument
898 return mStartPosition + touchY - mStartY; in calculateYPosition()