Home | History | Annotate | Download | only in jni

Lines Matching refs:slop

1173                     // for anchoring, try again with some slop.
1838 // get the highlight rectangles for the touch point (x, y) with the slop
1839 AndroidHitTestResult WebViewCore::hitTestAtPoint(int x, int y, int slop, bool doMoveMouse)
1844 false, false, DontHitTestScrollbars, HitTestRequest::Active | HitTestRequest::ReadOnly, IntSize(slop, slop));
1966 IntRect testRect(docPos.x() - slop, docPos.y() - slop, 2 * slop + 1, 2 * slop + 1);
1994 IntRect inputRect = IntRect(x - slop, y - slop,
1995 slop * 2 + 1, slop * 2 + 1);
4945 jint y, jint slop, jboolean doMoveMouse)
4950 AndroidHitTestResult result = viewImpl->hitTestAtPoint(x, y, slop, doMoveMouse);