Home
last modified time | relevance | path

Searched refs:touchSlop (Results 1 – 6 of 6) sorted by relevance

/frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
DTouchUtils.java52 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop(); in tapView() local
54 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0); in tapView()
83 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop(); in touchAndCancelView() local
85 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0); in touchAndCancelView()
110 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop(); in clickView() local
112 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0); in clickView()
147 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop(); in longClickView() local
149 x + touchSlop / 2, y + touchSlop / 2, 0); in longClickView()
/frameworks/base/test-runner/src/android/test/
DTouchUtils.java267 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop(); in tapView() local
269 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0); in tapView()
307 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop(); in touchAndCancelView() local
309 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0); in touchAndCancelView()
343 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop(); in clickView() local
345 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0); in clickView()
403 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop(); in longClickView() local
405 x + touchSlop / 2, y + touchSlop / 2, 0); in longClickView()
/frameworks/base/core/java/android/view/
DGestureDetector.java419 int touchSlop, doubleTapSlop, doubleTapTouchSlop; in init() local
422 touchSlop = ViewConfiguration.getTouchSlop(); in init()
423 doubleTapTouchSlop = touchSlop; // Hack rather than adding a hiden method for this in init()
430 touchSlop = configuration.getScaledTouchSlop(); in init()
436 mTouchSlopSquare = touchSlop * touchSlop; in init()
/frameworks/support/v4/java/android/support/v4/view/
DGestureDetectorCompat.java175 final int touchSlop = configuration.getScaledTouchSlop(); in init() local
180 mTouchSlopSquare = touchSlop * touchSlop; in init()
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
DPhotoView.java1144 final int touchSlop = configuration.getScaledTouchSlop(); in initialize() local
1145 sTouchSlopSquare = touchSlop * touchSlop; in initialize()
/frameworks/base/core/java/android/widget/
DEditor.java4553 final int touchSlop = viewConfiguration.getScaledTouchSlop(); in onTouchEvent() local
4555 if (distanceSquared < touchSlop * touchSlop) { in onTouchEvent()
5260 final int touchSlop = viewConfig.getScaledTouchSlop();
5275 distanceSquared <= touchSlop * touchSlop;
5383 final int touchSlop = viewConfig.getScaledTouchSlop();
5386 : touchSlop;