Home | History | Annotate | Download | only in view

Lines Matching refs:slop

3103      * Cache the touch slop from the context that created the view.
9981 * is inside the view, where the area of the view is expanded by the slop factor.
9985 private boolean pointInView(float localX, float localY, float slop) {
9986 return localX >= -slop && localY >= -slop && localX < ((mRight - mLeft) + slop) &&
9987 localY < ((mBottom - mTop) + slop);