Home | History | Annotate | Download | only in app

Lines Matching refs:slop

568         final int slop = ViewConfiguration.get(mContext).getScaledWindowTouchSlop();
570 return (x < -slop) || (y < -slop)
571 || (x > (decorView.getWidth()+slop))
572 || (y > (decorView.getHeight()+slop));