Home
last modified time | relevance | path

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

/packages/apps/Car/RotaryController/tests/unit/src/com/android/car/rotary/
DRotaryServiceTest.java1705 when(mRotaryService.isInFocusedWindow(appButton3Node)).thenReturn(false); in testOnKeyEvents_centerButtonClickInSystemWindow_performActionClick()
1795 when(mRotaryService.isInFocusedWindow(appButton3Node)).thenReturn(false); in testOnKeyEvents_centerButtonLongClickInSystemWindow_performActionLongClick()
2239 when(mRotaryService.isInFocusedWindow(appButton3Node)).thenReturn(true); in testDirectManipulationMode2()
/packages/apps/Car/RotaryController/src/com/android/car/rotary/
DRotaryService.java1513 if (isInFocusedWindow(mFocusedNode) && !mNavigator.isHostNode(mFocusedNode)) { in handleCenterButtonEvent()
2019 if (mFocusedNode != null && remainingRotationCount > 0 && isInFocusedWindow(mFocusedNode)) { in handleRotateEvent()
2124 boolean isInFocusedWindow(@NonNull AccessibilityNodeInfo node) { in isInFocusedWindow() method in RotaryService