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

  /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 842 final int slop = ViewConfiguration.get(context).getScaledWindowTouchSlop(); local
844 return (x < -slop) || (y < -slop)
845 || (x > (decorView.getWidth()+slop))
846 || (y > (decorView.getHeight()+slop));
    [all...]
View.java     [all...]
  /external/jpeg/
jmemmac.c 18 * application's zone, with the exception of the rather small "slop"
123 long slop, mem; local
132 * We add some slop to ensure we don't use up all available memory.
134 slop = max_bytes_needed / 16 + 32768L;
135 mem = CompactMem(max_bytes_needed + slop) - slop;
137 mem = 0; /* sigh, couldn't even get the slop */
jmemmgr.c 232 * we try to get enough space for the current request plus a "slop" factor,
233 * where the slop will be the amount of leftover space in the new pool.
234 * The speed vs. space tradeoff is largely determined by the slop values.
235 * A different slop value is provided for each pool class (lifetime),
263 size_t odd_bytes, min_request, slop; local
288 /* min_request is what we need now, slop is what will be leftover */
291 slop = first_pool_slop[pool_id];
293 slop = extra_pool_slop[pool_id];
295 if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
296 slop = (size_t) (MAX_ALLOC_CHUNK-min_request)
    [all...]
  /external/qemu/distrib/jpeg-6b/
jmemmac.c 18 * application's zone, with the exception of the rather small "slop"
123 long slop, mem; local
132 * We add some slop to ensure we don't use up all available memory.
134 slop = max_bytes_needed / 16 + 32768L;
135 mem = CompactMem(max_bytes_needed + slop) - slop;
137 mem = 0; /* sigh, couldn't even get the slop */
jmemmgr.c 232 * we try to get enough space for the current request plus a "slop" factor,
233 * where the slop will be the amount of leftover space in the new pool.
234 * The speed vs. space tradeoff is largely determined by the slop values.
235 * A different slop value is provided for each pool class (lifetime),
263 size_t odd_bytes, min_request, slop; local
288 /* min_request is what we need now, slop is what will be leftover */
291 slop = first_pool_slop[pool_id];
293 slop = extra_pool_slop[pool_id];
295 if (slop > (size_t) (MAX_ALLOC_CHUNK-min_request))
296 slop = (size_t) (MAX_ALLOC_CHUNK-min_request)
    [all...]
  /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) {
  /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);
  /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/base/core/java/android/app/
SearchDialog.java 499 final int slop = ViewConfiguration.get(mContext).getScaledWindowTouchSlop(); local
500 return (x < -slop) || (y < -slop)
501 || (x > (v.getWidth()+slop))
502 || (y > (v.getHeight()+slop));
  /prebuilts/devtools/tools/lib/
jobb.jar 
  /frameworks/support/v4/java/android/support/v4/widget/
SlidingPaneLayout.java 765 final int slop = mDragHelper.getTouchSlop(); local
766 if (adx > slop && ady > adx) {
805 final int slop = mDragHelper.getTouchSlop(); local
806 if (dx * dx + dy * dy < slop * slop &&
    [all...]
DrawerLayout.java 918 final int slop = mLeftDragger.getTouchSlop(); local
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.h 495 // return a list of rects matching the touch point (x, y) with the slop
496 WTF::Vector<WebCore::IntRect> getTouchHighlightRects(int x, int y, int slop,
499 AndroidHitTestResult hitTestAtPoint(int x, int y, int slop, bool doMoveMouse = false);
771 // will nullify the slop checking we do in hitTest (aka, ACTION_DOWN)
    [all...]
WebViewCore.cpp     [all...]
  /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/base/core/java/android/webkit/
WebViewCore.java     [all...]
WebViewClassic.java 1693 int slop = configuration.getScaledTouchSlop(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene_1.9.1.v20100518-1140.jar 
  /external/ceres-solver/docs/
changes.tex 127 \item Change the slop handling around zero for model cost changes to use
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-216320.js 820 function slop(lbx,value) {
  /cts/tests/tests/view/src/android/view/cts/
ViewTest.java 2657 int slop = ViewConfiguration.get(mActivity).getScaledTouchSlop(); local
    [all...]
  /development/samples/training/NavigationDrawer/libs/
android-support-v4.jar 
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 457 milliseconds