Searched refs:touchY (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DNotificationRowLayout.java190 public View getChildAtRawPosition(float touchX, float touchY) { argument
193 return getChildAtPosition((float) (touchX - location[0]), (float) (touchY - location[1]));
196 public View getChildAtPosition(float touchX, float touchY) { argument
208 if (touchY < y) return slidingChild;
/frameworks/base/services/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.java259 float touchX, float touchY, float thumbCenterX, float thumbCenterY,
289 // will let us eliminate the (touchX,touchY) parameters from the API.
308 mService.mDragState.mCurrentY = touchY;
309 mService.mDragState.broadcastDragStartedLw(touchX, touchY);
322 touchY - thumbCenterY);
258 performDrag(IWindow window, IBinder dragToken, float touchX, float touchY, float thumbCenterX, float thumbCenterY, ClipData data) argument
/frameworks/base/core/java/android/view/
H A DIWindowSession.aidl146 boolean performDrag(IWindow window, IBinder dragToken, float touchX, float touchY,
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java141 float touchX, float touchY, float thumbCenterX, float thumbCenterY,
140 performDrag(IWindow window, IBinder dragToken, float touchX, float touchY, float thumbCenterX, float thumbCenterY, ClipData data) argument
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java1224 int touchY = (int) me.getY() - mPaddingTop;
1225 if (touchY >= -mVerticalCorrection)
1226 touchY += mVerticalCorrection;
1229 int keyIndex = getKeyIndices(touchX, touchY, null);
1259 mStartY = touchY;
1261 mLastCodeY = touchY;
1340 touchY = mLastCodeY;
1346 detectAndSendKey(mCurrentKey, touchX, touchY, eventTime);
1360 mLastY = touchY;

Completed in 1075 milliseconds