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

/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/base/core/java/android/view/
H A DInputEventConsistencyVerifier.java179 onGenericMotionEvent(motionEvent, nestingLevel);
459 public void onGenericMotionEvent(MotionEvent event, int nestingLevel) { method in class:InputEventConsistencyVerifier
H A DView.java5598 mInputEventConsistencyVerifier.onGenericMotionEvent(event, 0);
5636 if (onGenericMotionEvent(event)) {
5710 * other events to {@link #onGenericMotionEvent(MotionEvent)}. This separation of concerns
6247 * <pre> public boolean onGenericMotionEvent(MotionEvent event) {
6264 * return super.onGenericMotionEvent(event);
6270 public boolean onGenericMotionEvent(MotionEvent event) { method in class:View
6342 // Dispatch the event to onGenericMotionEvent before returning true.
6344 // handled HOVER_MOVE events in onGenericMotionEvent and that would
6347 // Note that onGenericMotionEvent will be called by default when
/frameworks/base/core/java/com/android/internal/widget/
H A DPointerLocationView.java582 public boolean onGenericMotionEvent(MotionEvent event) { method in class:PointerLocationView
/frameworks/base/core/java/android/app/
H A DDialog.java660 * See {@link View#onGenericMotionEvent(MotionEvent)} for an example of how to
669 public boolean onGenericMotionEvent(MotionEvent event) { method in class:Dialog
775 return onGenericMotionEvent(ev);
H A DActivity.java2193 * See {@link View#onGenericMotionEvent(MotionEvent)} for an example of how to
2202 public boolean onGenericMotionEvent(MotionEvent event) { method in class:Activity
2403 return onGenericMotionEvent(ev);
/frameworks/base/core/java/android/widget/
H A DHorizontalScrollView.java666 public boolean onGenericMotionEvent(MotionEvent event) { method in class:HorizontalScrollView
696 return super.onGenericMotionEvent(event);
H A DScrollView.java676 public boolean onGenericMotionEvent(MotionEvent event) { method in class:ScrollView
701 return super.onGenericMotionEvent(event);
H A DStackView.java575 public boolean onGenericMotionEvent(MotionEvent event) { method in class:StackView
590 return super.onGenericMotionEvent(event);
H A DAbsListView.java3377 public boolean onGenericMotionEvent(MotionEvent event) { method in class:AbsListView
3393 return super.onGenericMotionEvent(event);
H A DTextView.java8443 public boolean onGenericMotionEvent(MotionEvent event) { method in class:TextView
8446 if (mMovement.onGenericMotionEvent(this, (Spannable) mText, event)) {
8450 // onGenericMotionEvent was added to the MovementMethod interface in API 12.
8455 return super.onGenericMotionEvent(event);
/frameworks/base/core/java/android/webkit/
H A DWebView.java6845 public boolean onGenericMotionEvent(MotionEvent event) { method in class:WebView
6868 return super.onGenericMotionEvent(event);

Completed in 270 milliseconds