Searched refs:vscroll (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/text/method/ |
D | BaseMovementMethod.java | 97 final float vscroll; in onGenericMotionEvent() local 100 vscroll = 0; in onGenericMotionEvent() 103 vscroll = -event.getAxisValue(MotionEvent.AXIS_VSCROLL); in onGenericMotionEvent() 113 if (vscroll < 0) { in onGenericMotionEvent() 114 handled |= scrollUp(widget, text, (int)Math.ceil(-vscroll)); in onGenericMotionEvent() 115 } else if (vscroll > 0) { in onGenericMotionEvent() 116 handled |= scrollDown(widget, text, (int)Math.ceil(vscroll)); in onGenericMotionEvent()
|
/frameworks/base/core/java/android/widget/ |
D | StackView.java | 588 final float vscroll = event.getAxisValue(MotionEvent.AXIS_VSCROLL); in onGenericMotionEvent() local 589 if (vscroll < 0) { in onGenericMotionEvent() 592 } else if (vscroll > 0) { in onGenericMotionEvent()
|
/frameworks/support/core-ui/java/android/support/v4/widget/ |
D | NestedScrollView.java | 928 final float vscroll = event.getAxisValue(MotionEvent.AXIS_VSCROLL); in onGenericMotionEvent() local 929 if (vscroll != 0) { in onGenericMotionEvent() 930 final int delta = (int) (vscroll * getVerticalScrollFactorCompat()); in onGenericMotionEvent()
|
/frameworks/native/services/inputflinger/ |
D | InputReader.cpp | 2819 float vscroll = mCursorScrollAccumulator.getRelativeVWheel(); in sync() local 2821 bool scrolled = vscroll != 0 || hscroll != 0; in sync() 2823 mWheelYVelocityControl.move(when, NULL, &vscroll); in sync() 2936 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_VSCROLL, vscroll); in sync() 6395 float vscroll = mCurrentRawState.rawVScroll; in dispatchPointerSimple() local 6397 mWheelYVelocityControl.move(when, NULL, &vscroll); in dispatchPointerSimple() 6403 pointerCoords.setAxisValue(AMOTION_EVENT_AXIS_VSCROLL, vscroll); in dispatchPointerSimple()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/ |
D | NotificationStackScrollLayout.java | 1382 final float vscroll = event.getAxisValue(MotionEvent.AXIS_VSCROLL); in onGenericMotionEvent() local 1383 if (vscroll != 0) { in onGenericMotionEvent() 1384 final int delta = (int) (vscroll * getVerticalScrollFactor()); in onGenericMotionEvent()
|