Home | History | Annotate | Download | only in cts

Lines Matching defs:mGestureDetector

50     private GestureDetector mGestureDetector;
65 mGestureDetector = mActivity.getGestureDetector();
97 mGestureDetector.setIsLongpressEnabled(true);
98 assertTrue(mGestureDetector.isLongpressEnabled());
99 mGestureDetector.setIsLongpressEnabled(false);
100 assertFalse(mGestureDetector.isLongpressEnabled());
105 mGestureDetector.setContextClickListener(null);
106 mGestureDetector.onGenericMotionEvent(mButtonPressPrimaryMotionEvent);
109 mGestureDetector.setContextClickListener(mListener);
110 mGestureDetector.onGenericMotionEvent(mButtonPressPrimaryMotionEvent);
119 mGestureDetector.onGenericMotionEvent(mButtonPressSecondaryMotionEvent);
125 mGestureDetector.onGenericMotionEvent(mButtonPressPrimaryMotionEvent);