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

1 2

  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/
TouchUtils.java 52 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop();
54 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0);
83 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop();
85 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0);
110 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop();
112 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0);
147 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop()
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowViewConfiguration.java 65 private int touchSlop;
82 touchSlop = (int) (density * TOUCH_SLOP + 0.5f);
167 return touchSlop;
  /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;
  /frameworks/base/test-runner/src/android/test/
TouchUtils.java 267 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop();
269 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0);
307 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop();
309 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0);
343 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop();
345 x + (touchSlop / 2.0f), y + (touchSlop / 2.0f), 0);
403 final int touchSlop = ViewConfiguration.get(v.getContext()).getScaledTouchSlop()
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageScrollView.java 114 final int touchSlop = ViewConfiguration.get(c).getScaledTouchSlop();
115 mTouchSlopSquared = touchSlop * touchSlop;
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewWithDraggableItems.java 139 final int touchSlop = mTouchSlop;
140 boolean yMoved = yDiff > touchSlop;
PagedView.java 161 // It true, use a different slop parameter (pagingTouchSlop = 2 * touchSlop) for deciding
    [all...]
  /frameworks/base/core/java/android/view/
GestureDetector.java 419 int touchSlop, doubleTapSlop, doubleTapTouchSlop;
422 touchSlop = ViewConfiguration.getTouchSlop();
423 doubleTapTouchSlop = touchSlop; // Hack rather than adding a hiden method for this
430 touchSlop = configuration.getScaledTouchSlop();
436 mTouchSlopSquare = touchSlop * touchSlop;
  /frameworks/support/v4/java/android/support/v4/view/
GestureDetectorCompat.java 175 final int touchSlop = configuration.getScaledTouchSlop();
180 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);
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
ConsoleActivity.java 347 int touchSlop = configuration.getScaledTouchSlop();
348 mTouchSlopSquare = touchSlop * touchSlop;
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java     [all...]
  /frameworks/base/core/java/android/widget/
Editor.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedView.java     [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 
  /external/robolectric/v1/lib/main/
android-support-v4.jar 
  /prebuilts/maven_repo/android/com/android/support/support-v4/13.0.0/
support-v4-13.0.0.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 
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 

Completed in 1613 milliseconds

1 2