Searched defs:mGestureDetector (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/services/java/com/android/server/display/
H A DOverlayDisplayWindow.java82 private GestureDetector mGestureDetector; field in class:OverlayDisplayWindow
209 mGestureDetector = new GestureDetector(mContext, mOnGestureListener);
321 mGestureDetector.onTouchEvent(event);
/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
H A DPlaybackView.java47 private GestureDetector mGestureDetector = null; field in class:PlaybackView
107 mGestureDetector = new GestureDetector(getContext(), gl);
112 mGestureDetector.onTouchEvent(event);
/frameworks/base/core/java/android/widget/
H A DGallery.java106 private GestureDetector mGestureDetector; field in class:Gallery
202 mGestureDetector = new GestureDetector(context, this);
203 mGestureDetector.setIsLongpressEnabled(true);
958 boolean retValue = mGestureDetector.onTouchEvent(event);
H A DCalendarView.java1339 private GestureDetector mGestureDetector; field in class:CalendarView.WeeksAdapter
1349 mGestureDetector = new GestureDetector(mContext, new CalendarGestureListener());
1440 if (mListView.isEnabled() && mGestureDetector.onTouchEvent(event)) {
/frameworks/ex/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java113 private GestureDetectorCompat mGestureDetector; field in class:PhotoView
176 if (mScaleGetureDetector == null || mGestureDetector == null) {
182 mGestureDetector.onTouchEvent(event);
371 mGestureDetector = null;
936 mGestureDetector = new GestureDetectorCompat(context, this, null);
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java203 private GestureDetector mGestureDetector; field in class:KeyboardView
384 mGestureDetector = new GestureDetector(getContext(), new GestureDetector.SimpleOnGestureListener() {
436 mGestureDetector.setIsLongpressEnabled(false);
1242 if (mGestureDetector.onTouchEvent(me)) {
/frameworks/base/services/java/com/android/server/accessibility/
H A DScreenMagnifier.java378 private final GestureDetector mGestureDetector; field in class:ScreenMagnifier.MagnifiedContentInteractonStateHandler
385 mGestureDetector = new GestureDetector(context, this);
390 mGestureDetector.onTouchEvent(event);
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java173 private GestureDetector mGestureDetector; field in class:RecipientEditTextView
266 mGestureDetector = new GestureDetector(context, this);
1353 mGestureDetector.onTouchEvent(event);
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
H A DPhotoView.java115 private GestureDetectorCompat mGestureDetector; field in class:PhotoView
178 if (mScaleGetureDetector == null || mGestureDetector == null) {
184 mGestureDetector.onTouchEvent(event);
373 mGestureDetector = null;
942 mGestureDetector = new GestureDetectorCompat(context, this, null);

Completed in 283 milliseconds