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.java153 assertThat(mRotaryService.getFocusedNode()).isEqualTo(defaultFocusNode); in testInitFocus_alreadyInitialized()
157 assertThat(mRotaryService.getFocusedNode()).isEqualTo(defaultFocusNode); in testInitFocus_alreadyInitialized()
190 assertNull(mRotaryService.getFocusedNode()); in testInitFocus_focusOnAlreadyFocusedView()
194 assertThat(mRotaryService.getFocusedNode()).isEqualTo(button3Node); in testInitFocus_focusOnAlreadyFocusedView()
231 assertNull(mRotaryService.getFocusedNode()); in testInitFocus_focusOnDefaultFocusView()
235 assertThat(mRotaryService.getFocusedNode()).isEqualTo(defaultFocusNode); in testInitFocus_focusOnDefaultFocusView()
277 assertNull(mRotaryService.getFocusedNode()); in testInitFocus_focusOnLastTouchedView()
280 assertThat(mRotaryService.getFocusedNode()).isEqualTo(button3Node); in testInitFocus_focusOnLastTouchedView()
324 assertNull(mRotaryService.getFocusedNode()); in testInitFocus_focusOnFirstFocusableView()
328 assertThat(mRotaryService.getFocusedNode()).isEqualTo(button1Node); in testInitFocus_focusOnFirstFocusableView()
[all …]
/packages/apps/Car/RotaryController/src/com/android/car/rotary/
DRotaryService.java2596 AccessibilityNodeInfo getFocusedNode() { in getFocusedNode() method in RotaryService