Searched refs:boundsInScreen (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | WindowInfo.java | 45 public final Rect boundsInScreen = new Rect(); field in WindowInfo 70 window.boundsInScreen.set(other.boundsInScreen); in obtain() 103 boundsInScreen.writeToParcel(parcel, flags); in writeToParcel() 124 builder.append(", bounds=").append(boundsInScreen); in toString() 139 boundsInScreen.readFromParcel(parcel); in initFromParcel() 159 boundsInScreen.setEmpty(); in clear()
|
D | AccessibilityInteractionController.java | 603 Rect boundsInScreen = mTempRect; in adjustIsVisibleToUserIfNeeded() local 604 info.getBoundsInScreen(boundsInScreen); in adjustIsVisibleToUserIfNeeded() 605 if (interactiveRegion.quickReject(boundsInScreen)) { in adjustIsVisibleToUserIfNeeded() 622 Rect boundsInScreen = mTempRect1; in applyAppScaleAndMagnificationSpecIfNeeded() local 625 info.getBoundsInScreen(boundsInScreen); in applyAppScaleAndMagnificationSpecIfNeeded() 628 boundsInScreen.scale(applicationScale); in applyAppScaleAndMagnificationSpecIfNeeded() 633 boundsInScreen.scale(spec.scale); in applyAppScaleAndMagnificationSpecIfNeeded() 634 boundsInScreen.offset((int) spec.offsetX, (int) spec.offsetY); in applyAppScaleAndMagnificationSpecIfNeeded() 637 info.setBoundsInScreen(boundsInScreen); in applyAppScaleAndMagnificationSpecIfNeeded() 684 if (!visibleWinFrame.intersects(boundsInScreen.left, boundsInScreen.top, in applyAppScaleAndMagnificationSpecIfNeeded() [all …]
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | AccessibilityController.java | 1079 final Rect boundsInScreen = mTempRect; in computeChangedWindows() local 1080 computeWindowBoundsInScreen(windowState, boundsInScreen); in computeChangedWindows() 1083 if (unaccountedSpace.quickReject(boundsInScreen)) { in computeChangedWindows() 1090 WindowInfo window = obtainPopulatedWindowInfo(windowState, boundsInScreen); in computeChangedWindows() 1103 unaccountedSpace.op(boundsInScreen, unaccountedSpace, in computeChangedWindows() 1139 Rect boundsInScreen = mTempRect; in computeChangedWindows() local 1140 computeWindowBoundsInScreen(windowState, boundsInScreen); in computeChangedWindows() 1144 boundsInScreen); in computeChangedWindows() 1238 WindowState windowState, Rect boundsInScreen) { in obtainPopulatedWindowInfo() argument 1240 window.boundsInScreen.set(boundsInScreen); in obtainPopulatedWindowInfo() [all …]
|
/frameworks/base/core/java/android/widget/ |
D | NumberPicker.java | 2658 Rect boundsInScreen = boundsInParent; in createAccessibiltyNodeInfoForInputText() local 2661 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibiltyNodeInfoForInputText() 2662 info.setBoundsInScreen(boundsInScreen); in createAccessibiltyNodeInfoForInputText() 2681 Rect boundsInScreen = boundsInParent; in createAccessibilityNodeInfoForVirtualButton() local 2684 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibilityNodeInfoForVirtualButton() 2685 info.setBoundsInScreen(boundsInScreen); in createAccessibilityNodeInfoForVirtualButton() 2729 Rect boundsInScreen = boundsInParent; in createAccessibilityNodeInfoForNumberPicker() local 2732 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibilityNodeInfoForNumberPicker() 2733 boundsInScreen.scale(applicationScale); in createAccessibilityNodeInfoForNumberPicker() 2734 info.setBoundsInScreen(boundsInScreen); in createAccessibilityNodeInfoForNumberPicker()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | AccessibilityManagerService.java | 4239 reportedWindow.setBoundsInScreen(window.boundsInScreen); in populateReportedWindow() 4373 Rect boundsInScreen = mTempRect; in getAccessibilityFocusClickPointInScreenNotLocked() local 4374 focus.getBoundsInScreen(boundsInScreen); in getAccessibilityFocusClickPointInScreenNotLocked() 4379 boundsInScreen.offset((int) -spec.offsetX, (int) -spec.offsetY); in getAccessibilityFocusClickPointInScreenNotLocked() 4380 boundsInScreen.scale(1 / spec.scale); in getAccessibilityFocusClickPointInScreenNotLocked() 4386 if (!boundsInScreen.intersect(windowBounds)) { in getAccessibilityFocusClickPointInScreenNotLocked() 4393 if (!boundsInScreen.intersect(0, 0, screenSize.x, screenSize.y)) { in getAccessibilityFocusClickPointInScreenNotLocked() 4397 outPoint.set(boundsInScreen.centerX(), boundsInScreen.centerY()); in getAccessibilityFocusClickPointInScreenNotLocked()
|