HomeSort by relevance Sort by last modified time
    Searched defs:slop (Results 1 - 25 of 59) sorted by null

1 2 3

  /packages/apps/Launcher3/src/com/android/launcher3/
StylusEventHelper.java 29 final float slop = ViewConfiguration.get(mView.getContext()).getScaledTouchSlop(); local
46 if (Utilities.pointInView(mView, event.getX(), event.getY(), slop)) {
DragController.java 550 final int slop = ViewConfiguration.get(mLauncher).getScaledWindowTouchSlop(); local
551 final int delay = mDistanceSinceScroll < slop ? RESCROLL_DELAY : SCROLL_DELAY;
  /external/opencv3/3rdparty/libtiff/
tif_packbits.c 71 long n, slop; local
96 slop = (long)(op - lastliteral);
101 while (slop-- > 0)
  /external/pdfium/third_party/libtiff/
tif_packbits.c 71 long n, slop; local
96 slop = (long)(op - lastliteral);
101 while (slop-- > 0)
  /frameworks/base/core/java/android/view/
TouchDelegate.java 49 * mBounds inflated to include some slop. This rect is to track whether the motion events
146 int slop = mSlop; local
147 event.setLocation(-(slop * 2), -(slop * 2));
Window.java 1203 final int slop = ViewConfiguration.get(context).getScaledWindowTouchSlop(); local
    [all...]
  /frameworks/base/core/java/android/text/method/
Touch.java 123 int slop = ViewConfiguration.get(widget.getContext()).getScaledTouchSlop(); local
125 if (Math.abs(event.getX() - ds[0].mX) >= slop ||
126 Math.abs(event.getY() - ds[0].mY) >= slop) {
  /frameworks/wilhelm/tools/permute/
permute.c 92 // slop is how much wiggle room we have to play with
93 unsigned slop = frameLength - s->mMinSegmentLengthFrames*2; local
94 assert(slop > 0);
95 // choose a random cut point within the slop region
97 unsigned cut = r % slop;
101 unsigned rightLength = s->mMinSegmentLengthFrames + (slop - cut);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LintTooltipManager.java 155 int slop = mVScale.inverseScale(10); // extra space around icon where tip triggers local
168 if (p.x < x2 - layoutIconSize - slop
169 || p.x > x2 + slop
170 || p.y < y2 - layoutIconSize - slop
171 || p.y > y2 + slop) {
  /hardware/intel/common/libva/va/x11/
va_nvctrl.c 283 int length, numbytes, slop; local
308 slop = numbytes & 3;
317 if (slop) _XEatData(dpy, 4-slop);
  /external/libjpeg-turbo/
jmemmgr.c 235 * we try to get enough space for the current request plus a "slop" factor,
236 * where the slop will be the amount of leftover space in the new pool.
237 * The speed vs. space tradeoff is largely determined by the slop values.
238 * A different slop value is provided for each pool class (lifetime),
270 size_t min_request, slop; local
298 /* min_request is what we need now, slop is what will be leftover */
301 slop = first_pool_slop[pool_id];
303 slop = extra_pool_slop[pool_id];
305 if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
306 slop = (size_t) (MAX_ALLOC_CHUNK-min_request)
    [all...]
  /external/opencv3/3rdparty/libjpeg/
jmemmgr.c 233 * we try to get enough space for the current request plus a "slop" factor,
234 * where the slop will be the amount of leftover space in the new pool.
235 * The speed vs. space tradeoff is largely determined by the slop values.
236 * A different slop value is provided for each pool class (lifetime),
264 size_t odd_bytes, min_request, slop; local
289 /* min_request is what we need now, slop is what will be leftover */
292 slop = first_pool_slop[pool_id];
294 slop = extra_pool_slop[pool_id];
296 if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
297 slop = (size_t) (MAX_ALLOC_CHUNK-min_request)
    [all...]
  /external/pdfium/third_party/libjpeg/
fpdfapi_jmemmgr.c 234 * we try to get enough space for the current request plus a "slop" factor,
235 * where the slop will be the amount of leftover space in the new pool.
236 * The speed vs. space tradeoff is largely determined by the slop values.
237 * A different slop value is provided for each pool class (lifetime),
265 size_t odd_bytes, min_request, slop; local
290 /* min_request is what we need now, slop is what will be leftover */
293 slop = first_pool_slop[pool_id];
295 slop = extra_pool_slop[pool_id];
297 if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
298 slop = (size_t) (MAX_ALLOC_CHUNK-min_request)
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
CropView.java 252 float slop = config.getScaledTouchSlop() * config.getScaledTouchSlop(); local
256 if (squaredDist < slop &&
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
CropView.java 264 float slop = config.getScaledTouchSlop() * config.getScaledTouchSlop(); local
268 if (squaredDist < slop &&
  /frameworks/base/core/java/android/app/
SearchDialog.java 496 final int slop = ViewConfiguration.get(mContext).getScaledWindowTouchSlop(); local
497 return (x < -slop) || (y < -slop)
498 || (x > (v.getWidth()+slop))
499 || (y > (v.getHeight()+slop));
  /packages/apps/Launcher2/src/com/android/launcher2/
DragController.java 531 final int slop = ViewConfiguration.get(mLauncher).getScaledWindowTouchSlop(); local
532 final int delay = mDistanceSinceScroll < slop ? RESCROLL_DELAY : SCROLL_DELAY;
  /frameworks/support/v4/java/android/support/v4/widget/
SlidingPaneLayout.java 809 final int slop = mDragHelper.getTouchSlop(); local
810 if (adx > slop && ady > adx) {
849 final int slop = mDragHelper.getTouchSlop(); local
    [all...]
DrawerLayout.java 1507 final int slop = mLeftDragger.getTouchSlop(); local
    [all...]
  /prebuilts/devtools/tools/lib/
jobb.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/24.4.0-beta3/
jobb-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/24.4.0-beta6/
jobb-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/24.5.0/
jobb-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/25.0.0/
jobb-25.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/25.0.0-alpha1/
jobb-25.0.0-alpha1.jar 

Completed in 2398 milliseconds

1 2 3