HomeSort by relevance Sort by last modified time
    Searched refs:touchSlop (Results 1 - 5 of 5) sorted by null

  /frameworks/base/test-runner/src/android/test/
TouchUtils.java 272 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop();
274 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0);
312 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop();
314 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0);
348 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop();
350 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0);
408 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop()
    [all...]
  /frameworks/base/core/java/android/view/
GestureDetector.java 387 int touchSlop, doubleTapSlop;
390 touchSlop = ViewConfiguration.getTouchSlop();
397 touchSlop = configuration.getScaledTouchSlop();
402 mTouchSlopSquare = touchSlop * touchSlop;
  /packages/apps/Music/src/com/android/music/
TouchInterceptor.java 140 int touchSlop = mTouchSlop;
141 mUpperBound = Math.min(y - touchSlop, mHeight / 3);
142 mLowerBound = Math.max(y + touchSlop, mHeight * 2 /3);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
CandidateView.java 137 public CandidateStripGestureListener(int touchSlop) {
139 mTouchSlopSquare = touchSlop * touchSlop;
  /packages/apps/Launcher2/src/com/android/launcher2/
Workspace.java 675 final int touchSlop = mTouchSlop;
676 boolean xMoved = xDiff > touchSlop;
677 boolean yMoved = yDiff > touchSlop;
    [all...]

Completed in 137 milliseconds