OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TOUCH_SLOP
(Results
1 - 3
of
3
) 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;
254
mTouchSlop =
TOUCH_SLOP
;
529
return
TOUCH_SLOP
;
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialPickerLayout.java
52
private final int
TOUCH_SLOP
;
106
TOUCH_SLOP
= vc.getScaledTouchSlop();
637
if (!mDoingMove && dX <=
TOUCH_SLOP
&& dY <=
TOUCH_SLOP
) {
[
all
...]
Completed in 191 milliseconds