Searched defs:mTouchTolerance (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DImageCrop.java56 private int mTouchTolerance = 40; field in class:ImageCrop
85 mTouchTolerance = (int) rsc.getDimension(R.dimen.crop_touch_tolerance);
285 mCropObj.setTouchTolerance(mDisplayMatrixInverse.mapRadius(mTouchTolerance));
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
H A DCropObject.java30 private float mTouchTolerance = 45; field in class:CropObject
112 mTouchTolerance = tolerance;
274 if ((left <= mTouchTolerance) && ((y + mTouchTolerance) >= cropped.top)
275 && ((y - mTouchTolerance) <= cropped.bottom) && (left < right)) {
278 else if ((right <= mTouchTolerance) && ((y + mTouchTolerance) >= cropped.top)
279 && ((y - mTouchTolerance) <= cropped.bottom)) {
284 if ((top <= mTouchTolerance) && ((x + mTouchTolerance) >
[all...]
H A DCropView.java72 private int mTouchTolerance = 40; field in class:CropView
105 mTouchTolerance = (int) rsc.getDimension(R.dimen.crop_touch_tolerance);
328 mCropObj.setTouchTolerance(mDisplayMatrixInverse.mapRadius(mTouchTolerance));

Completed in 1002 milliseconds