Home
last modified time | relevance | path

Searched refs:getFocusedNode (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Car/RotaryController/tests/unit/src/com/android/car/rotary/
DRotaryServiceTest.java171 assertThat(mRotaryService.getFocusedNode()).isEqualTo(defaultFocusNode); in testInitFocus_alreadyInitialized()
175 assertThat(mRotaryService.getFocusedNode()).isEqualTo(defaultFocusNode); in testInitFocus_alreadyInitialized()
211 assertNull(mRotaryService.getFocusedNode()); in testInitFocus_focusOnAlreadyFocusedView()
215 assertThat(mRotaryService.getFocusedNode()).isEqualTo(button3Node); in testInitFocus_focusOnAlreadyFocusedView()
252 assertNull(mRotaryService.getFocusedNode()); in testInitFocus_focusOnDefaultFocusView()
256 assertThat(mRotaryService.getFocusedNode()).isEqualTo(defaultFocusNode); in testInitFocus_focusOnDefaultFocusView()
298 assertNull(mRotaryService.getFocusedNode()); in testInitFocus_focusOnLastTouchedView()
301 assertThat(mRotaryService.getFocusedNode()).isEqualTo(button3Node); in testInitFocus_focusOnLastTouchedView()
345 assertNull(mRotaryService.getFocusedNode()); in testInitFocus_focusOnFirstFocusableView()
349 assertThat(mRotaryService.getFocusedNode()).isEqualTo(button1Node); in testInitFocus_focusOnFirstFocusableView()
[all …]
/packages/apps/Car/RotaryController/src/com/android/car/rotary/
DRotaryService.java2950 AccessibilityNodeInfo getFocusedNode() { in getFocusedNode() method in RotaryService