OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TOUCH_SLOP
(Results
1 - 5
of
5
) sorted by null
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowViewConfiguration.java
49
private static final int
TOUCH_SLOP
= 16;
50
private static final int PAGING_TOUCH_SLOP =
TOUCH_SLOP
* 2;
82
touchSlop = (int) (density *
TOUCH_SLOP
+ 0.5f);
162
return
TOUCH_SLOP
;
/frameworks/base/core/java/android/view/
ViewConfiguration.java
142
private static final int
TOUCH_SLOP
= 8;
148
private static final int DOUBLE_TAP_TOUCH_SLOP =
TOUCH_SLOP
;
158
* See the note above on {@link #
TOUCH_SLOP
} regarding the dimen resource
162
private static final int PAGING_TOUCH_SLOP =
TOUCH_SLOP
* 2;
255
mTouchSlop =
TOUCH_SLOP
;
536
return
TOUCH_SLOP
;
/development/ndk/sources/android/ndk_helper/
gestureDetector.h
40
const int32_t
TOUCH_SLOP
= 8;
gestureDetector.cpp
72
if( x * x + y * y <
TOUCH_SLOP
*
TOUCH_SLOP
* dp_factor_ )
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialPickerLayout.java
51
private final int
TOUCH_SLOP
;
105
TOUCH_SLOP
= vc.getScaledTouchSlop();
634
if (!mDoingMove && dX <=
TOUCH_SLOP
&& dY <=
TOUCH_SLOP
) {
[
all
...]
Completed in 172 milliseconds