Searched defs:onGenericMotionEvent (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/base/core/java/android/text/method/
H A DMovementMethod.java50 public boolean onGenericMotionEvent(TextView widget, Spannable text, MotionEvent event); method in interface:MovementMethod
H A DBaseMovementMethod.java93 public boolean onGenericMotionEvent(TextView widget, Spannable text, MotionEvent event) { method in class:BaseMovementMethod
/frameworks/rs/tests/java_api/RsNbody/src/com/example/android/rs/nbody_gl/
H A DBasicGLSurfaceView.java62 public boolean onGenericMotionEvent(MotionEvent event) { method in class:BasicGLSurfaceView
63 Log.v(TAG,"onGenericMotionEvent ");
72 return super.onGenericMotionEvent(event);
/frameworks/base/core/java/android/inputmethodservice/
H A DAbstractInputMethodService.java164 boolean handled = onGenericMotionEvent(event);
225 * @see android.view.View#onGenericMotionEvent(MotionEvent)
227 public boolean onGenericMotionEvent(MotionEvent event) { method in class:AbstractInputMethodService
H A DInputMethodService.java2109 public boolean onGenericMotionEvent(MotionEvent event) { method in class:InputMethodService
2110 if (DEBUG) Log.v(TAG, "onGenericMotionEvent(): event " + event);
/frameworks/base/core/java/android/app/
H A DActivityView.java212 public boolean onGenericMotionEvent(MotionEvent event) { method in class:ActivityView
218 return super.onGenericMotionEvent(event);
H A DDialog.java723 * See {@link View#onGenericMotionEvent(MotionEvent)} for an example of how to
732 public boolean onGenericMotionEvent(@NonNull MotionEvent event) { method in class:Dialog
854 return onGenericMotionEvent(ev);
H A DActivity.java3082 * See {@link View#onGenericMotionEvent(MotionEvent)} for an example of how to
3091 public boolean onGenericMotionEvent(MotionEvent event) { method in class:Activity
3346 return onGenericMotionEvent(ev);
/frameworks/base/core/java/android/view/
H A DGestureDetector.java36 * you must call {@link #onGenericMotionEvent(MotionEvent)}
37 * in {@link View#onGenericMotionEvent(MotionEvent)}.
156 * context click ensure that you call {@link #onGenericMotionEvent(MotionEvent)} in
157 * {@link View#onGenericMotionEvent(MotionEvent)}.
695 public boolean onGenericMotionEvent(MotionEvent ev) { method in class:GestureDetector
697 mInputEventConsistencyVerifier.onGenericMotionEvent(ev, 0);
H A DInputEventConsistencyVerifier.java183 onGenericMotionEvent(motionEvent, nestingLevel);
463 public void onGenericMotionEvent(MotionEvent event, int nestingLevel) { method in class:InputEventConsistencyVerifier
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewTouchHandler.java424 public boolean onGenericMotionEvent(MotionEvent ev) { method in class:TaskStackViewTouchHandler
H A DTaskStackView.java1216 public boolean onGenericMotionEvent(MotionEvent ev) { method in class:TaskStackView
1217 return mTouchHandler.onGenericMotionEvent(ev);
/frameworks/base/core/java/com/android/internal/widget/
H A DPointerLocationView.java670 public boolean onGenericMotionEvent(MotionEvent event) { method in class:PointerLocationView
H A DRecyclerView.java2899 public boolean onGenericMotionEvent(MotionEvent event) { method in class:RecyclerView
/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java729 public boolean onGenericMotionEvent(MotionEvent event) { method in class:HorizontalScrollView
764 return super.onGenericMotionEvent(event);
H A DScrollView.java789 public boolean onGenericMotionEvent(MotionEvent event) { method in class:ScrollView
819 return super.onGenericMotionEvent(event);
H A DStackView.java584 public boolean onGenericMotionEvent(MotionEvent event) { method in class:StackView
599 return super.onGenericMotionEvent(event);
H A DAbsListView.java4209 public boolean onGenericMotionEvent(MotionEvent event) { method in class:AbsListView
4243 return super.onGenericMotionEvent(event);
H A DTextView.java9730 public boolean onGenericMotionEvent(MotionEvent event) { method in class:TextView
9733 if (mMovement.onGenericMotionEvent(this, (Spannable) mText, event)) {
9737 // onGenericMotionEvent was added to the MovementMethod interface in API 12.
9742 return super.onGenericMotionEvent(event);
/frameworks/base/media/java/android/media/tv/
H A DTvInputService.java1121 * @see View#onGenericMotionEvent
1123 public boolean onGenericMotionEvent(MotionEvent event) { method in class:TvInputService.Session
1415 if (onGenericMotionEvent(motionEvent)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
H A DMLand.java897 public boolean onGenericMotionEvent (MotionEvent ev) { method in class:MLand
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DNestedScrollView.java923 public boolean onGenericMotionEvent(MotionEvent event) { method in class:NestedScrollView
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java401 public boolean onGenericMotionEvent(MotionEvent event); method in interface:WebViewProvider.ViewDelegate
H A DWebView.java2394 return WebView.super.onGenericMotionEvent(event);
2641 public boolean onGenericMotionEvent(MotionEvent event) { method in class:WebView
2642 return mProvider.getViewDelegate().onGenericMotionEvent(event);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java1373 public boolean onGenericMotionEvent(MotionEvent event) { method in class:NotificationStackScrollLayout
1402 return super.onGenericMotionEvent(event);

Completed in 1159 milliseconds

12