Home
last modified time | relevance | path

Searched refs:targetWindow (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityWindowManager.java332 final WindowInfo targetWindow = mWindowInfoById.get(targetWindowId); in getWatchOutsideTouchWindowIdLocked() local
333 if (targetWindow != null && mHasWatchOutsideTouchWindow) { in getWatchOutsideTouchWindowIdLocked()
337 if (window != null && window.layer < targetWindow.layer in getWatchOutsideTouchWindowIdLocked()
/frameworks/base/services/core/java/com/android/server/wm/
DDisplayPolicy.java3058 static boolean isOverlappingWithNavBar(WindowState targetWindow, WindowState navBarWindow) {
3060 || targetWindow.mActivityRecord == null || !targetWindow.isVisible()) {
3064 return Rect.intersects(targetWindow.getFrame(), navBarWindow.getFrame());
DWindowManagerService.java7050 WindowState targetWindow = dc.findScrollCaptureTargetWindow(topWindow, taskId); in requestScrollCapture() local
7051 if (targetWindow == null) { in requestScrollCapture()
7058 targetWindow.mClient.requestScrollCapture(listener); in requestScrollCapture()
7062 + "token=%s", targetWindow.mClient.asBinder()); in requestScrollCapture()
7063 responseBuilder.setWindowTitle(targetWindow.getName()); in requestScrollCapture()
/frameworks/base/services/core/java/com/android/server/inputmethod/
DInputMethodManagerService.java733 @UserIdInt int targetUserId, int targetDisplayId, @Nullable IBinder targetWindow, in StartInputInfo() argument
747 mTargetWindow = targetWindow; in StartInputInfo()
2841 final IBinder targetWindow = mImeTargetWindowMap.get(startInputToken); in reportStartInput() local
2842 if (targetWindow != null && mLastImeTargetWindow != targetWindow) { in reportStartInput()
2843 mWindowManagerInternal.updateInputMethodTargetWindow(token, targetWindow); in reportStartInput()
2845 mLastImeTargetWindow = targetWindow; in reportStartInput()