Searched refs:mDownEvents (Results 1 – 1 of 1) sorted by relevance
56 private final SparseArray<PointF> mDownEvents; field in StatusBarTouchController68 mDownEvents = new SparseArray<>(); in StatusBarTouchController()96 mDownEvents.clear(); in onControllerInterceptTouchEvent()97 mDownEvents.put(pid, new PointF(ev.getX(), ev.getY())); in onControllerInterceptTouchEvent()102 mDownEvents.put(pid, new PointF(ev.getX(idx), ev.getY(idx))); in onControllerInterceptTouchEvent()107 if (action == ACTION_MOVE && mDownEvents.contains(pid)) { in onControllerInterceptTouchEvent()108 float dy = ev.getY(idx) - mDownEvents.get(pid).y; in onControllerInterceptTouchEvent()109 float dx = ev.getX(idx) - mDownEvents.get(pid).x; in onControllerInterceptTouchEvent()