Home
last modified time | relevance | path

Searched refs:moveFocusToAdjacentWindow (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DTaskFragmentTest.java933 assertFalse(mWm.moveFocusToAdjacentWindow(winLeftBottom, View.FOCUS_RIGHT)); in testMoveFocusToAdjacentWindow()
938 assertTrue(mWm.moveFocusToAdjacentWindow(winLeftTop, View.FOCUS_RIGHT)); in testMoveFocusToAdjacentWindow()
943 assertFalse(mWm.moveFocusToAdjacentWindow(winRightTop, View.FOCUS_UP)); in testMoveFocusToAdjacentWindow()
948 assertTrue(mWm.moveFocusToAdjacentWindow(winRightTop, View.FOCUS_BACKWARD)); in testMoveFocusToAdjacentWindow()
/frameworks/base/core/java/android/view/
DIWindowSession.aidl393 boolean moveFocusToAdjacentWindow(IWindow fromWindow, int direction); in moveFocusToAdjacentWindow() method
DWindowlessWindowManager.java687 public boolean moveFocusToAdjacentWindow(IWindow fromWindow, @FocusDirection int direction) { in moveFocusToAdjacentWindow() method in WindowlessWindowManager
DViewRootImpl.java7774 moveFocusToAdjacentWindow(direction); in performFocusNavigation()
7794 } else if (moveFocusToAdjacentWindow(direction)) { in performFocusNavigation()
7805 } else if (moveFocusToAdjacentWindow(direction)) { in performFocusNavigation()
7813 private boolean moveFocusToAdjacentWindow(@FocusDirection int direction) { in moveFocusToAdjacentWindow() method in ViewRootImpl.ViewPostImeInputStage
7819 return mWindowSession.moveFocusToAdjacentWindow(mWindow, direction); in moveFocusToAdjacentWindow()
/frameworks/base/services/core/java/com/android/server/wm/
DSession.java988 public boolean moveFocusToAdjacentWindow(IWindow fromWindow, @FocusDirection int direction) { in moveFocusToAdjacentWindow() method in Session
997 return mService.moveFocusToAdjacentWindow(win, direction); in moveFocusToAdjacentWindow()
DWindowManagerService.java9381 boolean moveFocusToAdjacentWindow(@NonNull WindowState fromWin, @FocusDirection int direction) { in moveFocusToAdjacentWindow() method in WindowManagerService