Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DDismissView.java49 public boolean isOnEmptySpace(float touchX, float touchY) { in isOnEmptySpace() argument
52 || touchY < mContent.getY() in isOnEmptySpace()
53 || touchY > mContent.getY() + mContent.getHeight(); in isOnEmptySpace()
/frameworks/base/services/core/java/com/android/server/wm/
DDragState.java183 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()
DSession.java269 float touchX, float touchY, float thumbCenterX, float thumbCenterY, in performDrag() argument
322 mService.mDragState.mCurrentY = touchY; in performDrag()
323 mService.mDragState.broadcastDragStartedLw(touchX, touchY); in performDrag()
336 touchY - thumbCenterY); in performDrag()
/frameworks/base/core/java/android/inputmethodservice/
DKeyboardView.java1229 int touchY = (int) me.getY() - mPaddingTop;
1230 if (touchY >= -mVerticalCorrection)
1231 touchY += mVerticalCorrection;
1234 int keyIndex = getKeyIndices(touchX, touchY, null);
1264 mStartY = touchY;
1266 mLastCodeY = touchY;
1345 touchY = mLastCodeY;
1351 detectAndSendKey(mCurrentKey, touchX, touchY, eventTime);
1365 mLastY = touchY;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DNotificationStackScrollLayout.java663 public ExpandableView getClosestChildAtRawPosition(float touchX, float touchY) { in getClosestChildAtRawPosition() argument
665 float localTouchY = touchY - mTempInt2[1]; in getClosestChildAtRawPosition()
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()
723 return row.getViewAtPosition(touchY - childTop); in getChildAtPosition()
2732 public boolean isBelowLastNotification(float touchX, float touchY) { in isBelowLastNotification() argument
2738 if (childTop > touchY) { in isBelowLastNotification()
2742 boolean belowChild = touchY > childTop + child.getActualHeight(); in isBelowLastNotification()
[all …]
/frameworks/base/core/java/android/view/
DIWindowSession.aidl153 boolean performDrag(IWindow window, IBinder dragToken, float touchX, float touchY, in performDrag() argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeWindowSession.java143 float touchX, float touchY, float thumbCenterX, float thumbCenterY, in performDrag() argument