Home
last modified time | relevance | path

Searched refs:boundsInScreen (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/view/
DWindowInfo.java47 public final Rect boundsInScreen = new Rect(); field in WindowInfo
74 window.boundsInScreen.set(other.boundsInScreen); in obtain()
109 boundsInScreen.writeToParcel(parcel, flags); in writeToParcel()
131 builder.append(", bounds=").append(boundsInScreen); in toString()
149 boundsInScreen.readFromParcel(parcel); in initFromParcel()
171 boundsInScreen.setEmpty(); in clear()
DAccessibilityInteractionController.java818 Rect boundsInScreen = mTempRect; in adjustIsVisibleToUserIfNeeded() local
819 info.getBoundsInScreen(boundsInScreen); in adjustIsVisibleToUserIfNeeded()
820 if (interactiveRegion.quickReject(boundsInScreen) && !shouldBypassAdjustIsVisible()) { in adjustIsVisibleToUserIfNeeded()
845 Rect boundsInScreen = mTempRect1; in applyAppScaleAndMagnificationSpecIfNeeded() local
848 info.getBoundsInScreen(boundsInScreen); in applyAppScaleAndMagnificationSpecIfNeeded()
851 boundsInScreen.scale(applicationScale); in applyAppScaleAndMagnificationSpecIfNeeded()
856 boundsInScreen.scale(spec.scale); in applyAppScaleAndMagnificationSpecIfNeeded()
857 boundsInScreen.offset((int) spec.offsetX, (int) spec.offsetY); in applyAppScaleAndMagnificationSpecIfNeeded()
860 info.setBoundsInScreen(boundsInScreen); in applyAppScaleAndMagnificationSpecIfNeeded()
907 if (!visibleWinFrame.intersects(boundsInScreen.left, boundsInScreen.top, in applyAppScaleAndMagnificationSpecIfNeeded()
[all …]
/frameworks/base/services/core/java/com/android/server/wm/
DAccessibilityController.java1139 final Rect boundsInScreen = mTempRect; in computeChangedWindows() local
1140 computeWindowBoundsInScreen(windowState, boundsInScreen); in computeChangedWindows()
1142 if (windowMattersToAccessibility(windowState, boundsInScreen, unaccountedSpace, in computeChangedWindows()
1144 addPopulatedWindowInfo(windowState, boundsInScreen, windows, addedWindows); in computeChangedWindows()
1145 updateUnaccountedSpace(windowState, boundsInScreen, unaccountedSpace, in computeChangedWindows()
1220 private boolean windowMattersToAccessibility(WindowState windowState, Rect boundsInScreen, in windowMattersToAccessibility() argument
1241 if (unaccountedSpace.quickReject(boundsInScreen)) { in windowMattersToAccessibility()
1253 private void updateUnaccountedSpace(WindowState windowState, Rect boundsInScreen, in updateUnaccountedSpace() argument
1261 unaccountedSpace.op(boundsInScreen, unaccountedSpace, in updateUnaccountedSpace()
1310 WindowState windowState, Rect boundsInScreen, in addPopulatedWindowInfo() argument
[all …]
/frameworks/base/core/java/android/widget/
DNumberPicker.java2783 Rect boundsInScreen = boundsInParent; in createAccessibiltyNodeInfoForInputText() local
2786 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibiltyNodeInfoForInputText()
2787 info.setBoundsInScreen(boundsInScreen); in createAccessibiltyNodeInfoForInputText()
2806 Rect boundsInScreen = boundsInParent; in createAccessibilityNodeInfoForVirtualButton() local
2809 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibilityNodeInfoForVirtualButton()
2810 info.setBoundsInScreen(boundsInScreen); in createAccessibilityNodeInfoForVirtualButton()
2854 Rect boundsInScreen = boundsInParent; in createAccessibilityNodeInfoForNumberPicker() local
2857 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibilityNodeInfoForNumberPicker()
2858 boundsInScreen.scale(applicationScale); in createAccessibilityNodeInfoForNumberPicker()
2859 info.setBoundsInScreen(boundsInScreen); in createAccessibilityNodeInfoForNumberPicker()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityManagerService.java2932 reportedWindow.setBoundsInScreen(window.boundsInScreen); in populateReportedWindowLocked()
3091 Rect boundsInScreen = mTempRect; in getAccessibilityFocusClickPointInScreenNotLocked() local
3092 focus.getBoundsInScreen(boundsInScreen); in getAccessibilityFocusClickPointInScreenNotLocked()
3097 boundsInScreen.offset((int) -spec.offsetX, (int) -spec.offsetY); in getAccessibilityFocusClickPointInScreenNotLocked()
3098 boundsInScreen.scale(1 / spec.scale); in getAccessibilityFocusClickPointInScreenNotLocked()
3104 if (!boundsInScreen.intersect(windowBounds)) { in getAccessibilityFocusClickPointInScreenNotLocked()
3111 if (!boundsInScreen.intersect(0, 0, screenSize.x, screenSize.y)) { in getAccessibilityFocusClickPointInScreenNotLocked()
3115 outPoint.set(boundsInScreen.centerX(), boundsInScreen.centerY()); in getAccessibilityFocusClickPointInScreenNotLocked()