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 69 window.boundsInScreen.set(other.boundsInScreen); in obtain() 101 boundsInScreen.writeToParcel(parcel, flags); in writeToParcel() 121 builder.append(", bounds=").append(boundsInScreen); in toString() 136 boundsInScreen.readFromParcel(parcel); in initFromParcel() 155 boundsInScreen.setEmpty(); in clear()
|
D | AccessibilityInteractionController.java | 725 Rect boundsInScreen = mTempRect; in adjustIsVisibleToUserIfNeeded() local 726 info.getBoundsInScreen(boundsInScreen); in adjustIsVisibleToUserIfNeeded() 727 if (interactiveRegion.quickReject(boundsInScreen)) { in adjustIsVisibleToUserIfNeeded() 764 Rect boundsInScreen = mTempRect1; in applyAppScaleAndMagnificationSpecIfNeeded() local 767 info.getBoundsInScreen(boundsInScreen); in applyAppScaleAndMagnificationSpecIfNeeded() 770 boundsInScreen.scale(applicationScale); in applyAppScaleAndMagnificationSpecIfNeeded() 775 boundsInScreen.scale(spec.scale); in applyAppScaleAndMagnificationSpecIfNeeded() 776 boundsInScreen.offset((int) spec.offsetX, (int) spec.offsetY); in applyAppScaleAndMagnificationSpecIfNeeded() 779 info.setBoundsInScreen(boundsInScreen); in applyAppScaleAndMagnificationSpecIfNeeded() 807 if (!visibleWinFrame.intersects(boundsInScreen.left, boundsInScreen.top, in applyAppScaleAndMagnificationSpecIfNeeded() [all …]
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | AccessibilityController.java | 1047 final Rect boundsInScreen = mTempRect; in computeChangedWindows() local 1048 computeWindowBoundsInScreen(windowState, boundsInScreen); in computeChangedWindows() 1051 if (unaccountedSpace.quickReject(boundsInScreen)) { in computeChangedWindows() 1058 WindowInfo window = obtainPopulatedWindowInfo(windowState, boundsInScreen); in computeChangedWindows() 1071 unaccountedSpace.op(boundsInScreen, unaccountedSpace, in computeChangedWindows() 1107 Rect boundsInScreen = mTempRect; in computeChangedWindows() local 1108 computeWindowBoundsInScreen(windowState, boundsInScreen); in computeChangedWindows() 1112 boundsInScreen); in computeChangedWindows() 1206 Rect boundsInScreen) { in obtainPopulatedWindowInfo() argument 1220 window.boundsInScreen.set(boundsInScreen); in obtainPopulatedWindowInfo() [all …]
|
/frameworks/base/core/java/android/widget/ |
D | NumberPicker.java | 2611 Rect boundsInScreen = boundsInParent; in createAccessibiltyNodeInfoForInputText() local 2614 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibiltyNodeInfoForInputText() 2615 info.setBoundsInScreen(boundsInScreen); in createAccessibiltyNodeInfoForInputText() 2634 Rect boundsInScreen = boundsInParent; in createAccessibilityNodeInfoForVirtualButton() local 2637 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibilityNodeInfoForVirtualButton() 2638 info.setBoundsInScreen(boundsInScreen); in createAccessibilityNodeInfoForVirtualButton() 2682 Rect boundsInScreen = boundsInParent; in createAccessibilityNodeInfoForNumberPicker() local 2685 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibilityNodeInfoForNumberPicker() 2686 boundsInScreen.scale(applicationScale); in createAccessibilityNodeInfoForNumberPicker() 2687 info.setBoundsInScreen(boundsInScreen); in createAccessibilityNodeInfoForNumberPicker()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | AccessibilityManagerService.java | 3564 reportedWindow.setBoundsInScreen(window.boundsInScreen); in populateReportedWindow() 3678 Rect boundsInScreen = mTempRect; in getAccessibilityFocusClickPointInScreenNotLocked() local 3679 focus.getBoundsInScreen(boundsInScreen); in getAccessibilityFocusClickPointInScreenNotLocked() 3684 if (!boundsInScreen.intersect(windowBounds)) { in getAccessibilityFocusClickPointInScreenNotLocked() 3691 boundsInScreen.offset((int) -spec.offsetX, (int) -spec.offsetY); in getAccessibilityFocusClickPointInScreenNotLocked() 3692 boundsInScreen.scale(1 / spec.scale); in getAccessibilityFocusClickPointInScreenNotLocked() 3698 if (!boundsInScreen.intersect(0, 0, screenSize.x, screenSize.y)) { in getAccessibilityFocusClickPointInScreenNotLocked() 3702 outPoint.set(boundsInScreen.centerX(), boundsInScreen.centerY()); in getAccessibilityFocusClickPointInScreenNotLocked()
|