Home | History | Annotate | Download | only in view

Lines Matching refs:slop

842         final int slop = ViewConfiguration.get(context).getScaledWindowTouchSlop();
844 return (x < -slop) || (y < -slop)
845 || (x > (decorView.getWidth()+slop))
846 || (y > (decorView.getHeight()+slop));