OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:touchSlop
(Results
1 - 13
of
13
) sorted by null
/development/samples/devbytes/graphics/FoldingLayout/src/com/example/android/foldinglayout/
FoldingLayoutActivity.java
381
int
touchSlop
= 0;
390
touchSlop
= distanceY < 0 ? -mTouchSlop : mTouchSlop;
393
touchSlop
= distanceY < 0 ? mTouchSlop : -mTouchSlop;
395
mTranslation = mDidNotStartScroll ? mTranslation +
touchSlop
: mTranslation;
406
touchSlop
= distanceX < 0 ? -mTouchSlop : mTouchSlop;
409
touchSlop
= distanceX < 0 ? mTouchSlop : -mTouchSlop;
411
mTranslation = mDidNotStartScroll ? mTranslation +
touchSlop
: mTranslation;
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowViewConfiguration.java
63
private int
touchSlop
;
81
touchSlop
= (int) (density * TOUCH_SLOP + 0.5f);
167
return
touchSlop
;
/cts/common/device-side/util/src/com/android/compatibility/common/util/
CtsTouchUtils.java
87
final int
touchSlop
= ViewConfiguration.get(anchorView.getContext()).getScaledTouchSlop();
97
injectMoveEventForTap(uiAutomation, downTime,
touchSlop
, xOnScreen, yOnScreen);
133
final int
touchSlop
= ViewConfiguration.get(anchorView.getContext()).getScaledTouchSlop();
143
injectMoveEventForTap(uiAutomation, downTime,
touchSlop
, xOnScreen, yOnScreen);
146
injectMoveEventForTap(uiAutomation, downTime,
touchSlop
, xOnScreen, yOnScreen);
287
int
touchSlop
, int xOnScreen, int yOnScreen) {
289
xOnScreen + (
touchSlop
/ 2.0f), yOnScreen + (
touchSlop
/ 2.0f), 1);
531
final int
touchSlop
= ViewConfiguration.get(view.getContext()).getScaledTouchSlop();
539
xOnScreen, yOnScreen,
touchSlop
, extraWaitMs, true)
[
all
...]
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
CtsTouchUtils.java
88
final int
touchSlop
= ViewConfiguration.get(anchorView.getContext()).getScaledTouchSlop();
98
injectMoveEventForTap(uiAutomation, downTime,
touchSlop
, xOnScreen, yOnScreen);
134
final int
touchSlop
= ViewConfiguration.get(anchorView.getContext()).getScaledTouchSlop();
144
injectMoveEventForTap(uiAutomation, downTime,
touchSlop
, xOnScreen, yOnScreen);
147
injectMoveEventForTap(uiAutomation, downTime,
touchSlop
, xOnScreen, yOnScreen);
288
int
touchSlop
, int xOnScreen, int yOnScreen) {
290
xOnScreen + (
touchSlop
/ 2.0f), yOnScreen + (
touchSlop
/ 2.0f), 1);
532
final int
touchSlop
= ViewConfiguration.get(view.getContext()).getScaledTouchSlop();
540
xOnScreen, yOnScreen,
touchSlop
, extraWaitMs, true)
[
all
...]
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
ConsoleActivity.java
346
int
touchSlop
= configuration.getScaledTouchSlop();
347
mTouchSlopSquare =
touchSlop
*
touchSlop
;
[
all
...]
/cts/tests/app/src/android/app/cts/
DialogTest.java
487
final int
touchSlop
= ViewConfiguration.get(mActivity).getScaledWindowTouchSlop();
488
final int x = dialogLocation[0] - (
touchSlop
+ 1);
489
final int y = dialogLocation[1] - (
touchSlop
+ 1);
[
all
...]
/development/samples/ControllerSample/libs/
android-support-v4.jar
/development/samples/training/ContactsList/libs/
android-support-v4.jar
/development/samples/training/EffectiveNavigation/libs/
android-support-v4.jar
/development/samples/training/InteractiveChart/libs/
android-support-v4.jar
/development/samples/training/NavigationDrawer/libs/
android-support-v4.jar
/developers/build/prebuilts/gradle/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar
/developers/samples/android/ui/views/SwipeRefreshLayout/SwipeRefreshListFragment/Application/libs/
android-support-v4.jar
Completed in 356 milliseconds