/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/accessibility/ |
D | MagnificationGestureDetectorTest.java | 53 private MagnificationGestureDetector mGestureDetector; field in MagnificationGestureDetectorTest 68 mGestureDetector = new MagnificationGestureDetector(mContext, mHandler, mListener); in setUp() 82 mGestureDetector.onTouch(downEvent); in onActionDown_invokeDownCallback() 95 mGestureDetector.onTouch(downEvent); in performSingleTap_invokeCallbacksInOrder() 96 mGestureDetector.onTouch(upEvent); in performSingleTap_invokeCallbacksInOrder() 113 mGestureDetector.onTouch(downEvent); in performSingleTapWithActionCancel_notInvokeOnSingleTapCallback() 114 mGestureDetector.onTouch(cancelEvent); in performSingleTapWithActionCancel_notInvokeOnSingleTapCallback() 127 mGestureDetector.onTouch(downEvent); in performSingleTapWithTwoPointers_notInvokeSingleTapCallback() 128 mGestureDetector.onTouch(upEvent); in performSingleTapWithTwoPointers_notInvokeSingleTapCallback() 141 mGestureDetector.onTouch(downEvent); in performLongPress_invokeCallbacksInOrder() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
D | CaptionsToggleImageButton.java | 40 private GestureDetector mGestureDetector; field in CaptionsToggleImageButton 57 if (mGestureDetector != null) mGestureDetector.onTouchEvent(event); in onTouchEvent() 111 if (mGestureDetector == null) { in setOnConfirmedTapListener() 112 this.mGestureDetector = new GestureDetector(getContext(), mGestureListener, handler); in setOnConfirmedTapListener()
|
/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/ |
D | FixedAspectSurfaceView.java | 46 private GestureDetector mGestureDetector; field in FixedAspectSurfaceView 79 mGestureDetector = null; in setGestureListener() 81 mGestureDetector = new GestureDetector(context, listener); in setGestureListener() 152 if (mGestureDetector != null) { in onTouchEvent() 153 return mGestureDetector.onTouchEvent(event); in onTouchEvent()
|
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/ |
D | FixedAspectSurfaceView.java | 46 private GestureDetector mGestureDetector; field in FixedAspectSurfaceView 79 mGestureDetector = null; in setGestureListener() 81 mGestureDetector = new GestureDetector(context, listener); in setGestureListener() 152 if (mGestureDetector != null) { in onTouchEvent() 153 return mGestureDetector.onTouchEvent(event); in onTouchEvent()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/gestures/ |
D | TouchExplorer.java | 136 private final GestureManifold mGestureDetector; field in TouchExplorer 202 mGestureDetector = new GestureManifold(context, this, mState, mHandler); in TouchExplorer() 204 mGestureDetector = detector; in TouchExplorer() 247 mGestureDetector.clear(); in clear() 275 if (mGestureDetector.onMotionEvent(event, rawEvent, policyFlags)) { in onMotionEvent() 356 mGestureDetector.getMotionEvents()); in onDoubleTapAndHold() 374 mGestureDetector.getMotionEvents()); in onDoubleTap() 447 mGestureDetector.getMotionEvents()); in onGestureCancelled() 615 if (mGestureDetector.isMultiFingerGesturesEnabled() in handleActionMoveStateTouchInteracting() 616 && !mGestureDetector.isTwoFingerPassthroughEnabled()) { in handleActionMoveStateTouchInteracting() [all …]
|
/frameworks/base/core/java/android/view/ |
D | ScaleGestureDetector.java | 169 private GestureDetector mGestureDetector; field in ScaleGestureDetector 240 mGestureDetector.onTouchEvent(event); in onTouchEvent() 400 if (mQuickScaleEnabled && mGestureDetector == null) { in setQuickScaleEnabled() 412 mGestureDetector = new GestureDetector(mContext, gestureListener, mHandler); in setQuickScaleEnabled()
|
/frameworks/base/tests/UiBench/src/com/android/test/uibench/ |
D | NotificationShadeActivity.java | 40 private GestureDetector mGestureDetector; field in NotificationShadeActivity.FakeNotificationStackView 97 mGestureDetector = new GestureDetector(getContext(), mGestureListener); in FakeNotificationStackView() 152 return mGestureDetector.onTouchEvent(ev); in onTouchEvent()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | SystemGesturesPointerEventListener.java | 65 private GestureDetector mGestureDetector; field in SystemGesturesPointerEventListener 139 mGestureDetector = new GestureDetector(mContext, new FlingGestureDetector(), mHandler) { in systemReady() 146 if (mGestureDetector != null && event.isTouchEvent()) { in onPointerEvent() 147 mGestureDetector.onTouchEvent(event); in onPointerEvent()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | DecorCaptionView.java | 96 private GestureDetector mGestureDetector; field in DecorCaptionView 119 mGestureDetector = new GestureDetector(context, this); in init() 163 mGestureDetector.onTouchEvent(event); in onTouchEvent()
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | OverlayDisplayWindow.java | 84 private GestureDetector mGestureDetector; field in OverlayDisplayWindow 235 mGestureDetector = new GestureDetector(mContext, mOnGestureListener); in createWindow() 350 mGestureDetector.onTouchEvent(event);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/ |
D | MagnificationModeSwitch.java | 81 private final MagnificationGestureDetector mGestureDetector; field in MagnificationModeSwitch 171 mGestureDetector = new MagnificationGestureDetector(context, in MagnificationModeSwitch() 199 return mGestureDetector.onTouch(event); in onTouch()
|
D | WindowMagnificationController.java | 133 private final MagnificationGestureDetector mGestureDetector; field in WindowMagnificationController 176 mGestureDetector = in WindowMagnificationController() 533 return mGestureDetector.onTouch(event); in onTouch()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | NotificationShadeWindowViewController.java | 93 private GestureDetector mGestureDetector; field in NotificationShadeWindowViewController 213 mGestureDetector = new GestureDetector(mView.getContext(), gestureListener); in setupExpandedStatusBar() 249 mGestureDetector.onTouchEvent(ev); in setupExpandedStatusBar()
|
/frameworks/base/core/java/android/widget/ |
D | Gallery.java | 110 private GestureDetector mGestureDetector; field in Gallery 251 if (mGestureDetector == null) { in onAttachedToWindow() 252 mGestureDetector = new GestureDetector(getContext(), this); in onAttachedToWindow() 253 mGestureDetector.setIsLongpressEnabled(true); in onAttachedToWindow() 986 boolean retValue = mGestureDetector.onTouchEvent(event); in onTouchEvent()
|
D | CalendarViewLegacyDelegate.java | 1017 private GestureDetector mGestureDetector; field in CalendarViewLegacyDelegate.WeeksAdapter 1027 … mGestureDetector = new GestureDetector(mContext, new WeeksAdapter.CalendarGestureListener()); in WeeksAdapter() 1119 if (mListView.isEnabled() && mGestureDetector.onTouchEvent(event)) { in onTouch()
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/ |
D | PhotoView.java | 130 private GestureDetectorCompat mGestureDetector; field in PhotoView 211 if (mScaleGetureDetector == null || mGestureDetector == null) { in onTouchEvent() 217 mGestureDetector.onTouchEvent(event); in onTouchEvent() 473 mGestureDetector = null; in clear() 1148 mGestureDetector = new GestureDetectorCompat(context, this, null); in initialize()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | LockIconViewController.java | 473 private final GestureDetector mGestureDetector = field in LockIconViewController 554 mGestureDetector.onTouchEvent(event); in onTouchEvent()
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | KeyboardView.java | 211 private GestureDetector mGestureDetector; field in KeyboardView 403 if (mGestureDetector == null) { in initGestureDetector() 404 …mGestureDetector = new GestureDetector(getContext(), new GestureDetector.SimpleOnGestureListener()… in initGestureDetector() 456 mGestureDetector.setIsLongpressEnabled(false); in initGestureDetector() 1250 if (mGestureDetector.onTouchEvent(me)) {
|
/frameworks/base/core/java/com/android/internal/widget/helper/ |
D | ItemTouchHelper.java | 295 GestureDetector mGestureDetector; field in ItemTouchHelper 300 mGestureDetector.onTouchEvent(event); 345 mGestureDetector.onTouchEvent(event); 493 if (mGestureDetector != null) { in initGestureDetector() 496 mGestureDetector = new GestureDetector(mRecyclerView.getContext(), in initGestureDetector()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ |
D | ScreenshotView.java | 1101 private final GestureDetector mGestureDetector; field in ScreenshotView.SwipeDismissHandler 1111 mGestureDetector = new GestureDetector(mContext, gestureListener); in SwipeDismissHandler() 1116 boolean gestureResult = mGestureDetector.onTouchEvent(event); in onTouch()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/globalactions/ |
D | GlobalActionsDialogLite.java | 2123 private GestureDetector mGestureDetector; 2192 mGestureDetector = new GestureDetector(mContext, mGestureListener); 2216 return mGestureDetector.onTouchEvent(event) || super.onTouchEvent(event); 2280 mGestureDetector.onTouchEvent(event);
|
/frameworks/opt/chips/src/com/android/ex/chips/ |
D | RecipientEditTextView.java | 206 private GestureDetector mGestureDetector; field in RecipientEditTextView 377 mGestureDetector = new GestureDetector(context, this); in RecipientEditTextView() 1954 mGestureDetector.onTouchEvent(event); in onTouchEvent() 1985 mGestureDetector.onTouchEvent(event); in onTouchEvent()
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 25572 Landroid/inputmethodservice/KeyboardView;->mGestureDetector:Landroid/view/GestureDetector; 65217 Landroid/view/ScaleGestureDetector;->mGestureDetector:Landroid/view/GestureDetector;
|