Home
last modified time | relevance | path

Searched refs:mRotaryInputGraphView (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tests/Input/src/com/android/server/input/debug/
DRotaryInputGraphViewTest.java38 private RotaryInputGraphView mRotaryInputGraphView; field in RotaryInputGraphViewTest
44 mRotaryInputGraphView = new RotaryInputGraphView(context); in setUp()
49 assertEquals(0, mRotaryInputGraphView.getFrameCenterPosition(), 0.01); in startsWithDefaultFrameCenter()
57 mRotaryInputGraphView.addValue(scrollAxisValue, eventTime); in addValue_translatesRotaryInputGraphViewWithHighScrollValue()
59 assertTrue(mRotaryInputGraphView.getFrameCenterPosition() > 0); in addValue_translatesRotaryInputGraphViewWithHighScrollValue()
DFocusEventDebugViewTest.java54 private RotaryInputGraphView mRotaryInputGraphView; field in FocusEventDebugViewTest
64 mRotaryInputGraphView = spy(new RotaryInputGraphView(context)); in setUp()
66 () -> mRotaryInputValueView, () -> mRotaryInputGraphView); in setUp()
75 verify(mRotaryInputGraphView).addValue(0.5f, 10L); in handleRotaryInput_sendsMotionEventWhenEnabled()
85 verify(mRotaryInputGraphView, never()).addValue(anyFloat(), anyLong()); in handleRotaryInput_doesNotSendMotionEventWhenDisabled()
/frameworks/base/services/core/java/com/android/server/input/debug/
DFocusEventDebugView.java95 private RotaryInputGraphView mRotaryInputGraphView; field in FocusEventDebugView
209 removeView(mRotaryInputGraphView); in handleUpdateShowRotaryInput()
210 mRotaryInputGraphView = null; in handleUpdateShowRotaryInput()
222 mRotaryInputGraphView = mRotaryInputGraphViewFactory.get(); in handleUpdateShowRotaryInput()
226 addView(mRotaryInputGraphView, graphLayoutParams); in handleUpdateShowRotaryInput()
299 mRotaryInputGraphView.addValue(scrollAxisValue, motionEvent.getEventTime()); in handleRotaryInput()