Searched refs:boundsInScreen (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | WindowInfo.java | 47 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()
|
D | AccessibilityInteractionController.java | 818 Rect boundsInScreen = mTempRect; in adjustIsVisibleToUserIfNeeded() local 819 info.getBoundsInScreen(boundsInScreen); in adjustIsVisibleToUserIfNeeded() 820 if (interactiveRegion.quickReject(boundsInScreen) && !shouldBypassAdjustIsVisible()) { in adjustIsVisibleToUserIfNeeded() 848 final Rect boundsInScreen = mTempRect; in adjustBoundsInScreenIfNeeded() local 849 info.getBoundsInScreen(boundsInScreen); in adjustBoundsInScreenIfNeeded() 850 boundsInScreen.offset(mViewRootImpl.mAttachInfo.mLocationInParentDisplay.x, in adjustBoundsInScreenIfNeeded() 852 info.setBoundsInScreen(boundsInScreen); in adjustBoundsInScreenIfNeeded() 871 Rect boundsInScreen = mTempRect1; in applyAppScaleAndMagnificationSpecIfNeeded() local 874 info.getBoundsInScreen(boundsInScreen); in applyAppScaleAndMagnificationSpecIfNeeded() 877 boundsInScreen.scale(applicationScale); in applyAppScaleAndMagnificationSpecIfNeeded() [all …]
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | AccessibilityController.java | 1136 final Rect boundsInScreen = mTempRect; in computeChangedWindows() local 1137 computeWindowBoundsInScreen(windowState, boundsInScreen); in computeChangedWindows() 1139 if (windowMattersToAccessibility(windowState, boundsInScreen, unaccountedSpace, in computeChangedWindows() 1141 addPopulatedWindowInfo(windowState, boundsInScreen, windows, addedWindows); in computeChangedWindows() 1142 updateUnaccountedSpace(windowState, boundsInScreen, unaccountedSpace, in computeChangedWindows() 1217 private boolean windowMattersToAccessibility(WindowState windowState, Rect boundsInScreen, in windowMattersToAccessibility() argument 1238 if (unaccountedSpace.quickReject(boundsInScreen)) { in windowMattersToAccessibility() 1250 private void updateUnaccountedSpace(WindowState windowState, Rect boundsInScreen, in updateUnaccountedSpace() argument 1258 unaccountedSpace.op(boundsInScreen, unaccountedSpace, in updateUnaccountedSpace() 1307 WindowState windowState, Rect boundsInScreen, in addPopulatedWindowInfo() argument [all …]
|
/frameworks/base/core/java/android/widget/ |
D | NumberPicker.java | 2784 Rect boundsInScreen = boundsInParent; in createAccessibiltyNodeInfoForInputText() local 2787 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibiltyNodeInfoForInputText() 2788 info.setBoundsInScreen(boundsInScreen); in createAccessibiltyNodeInfoForInputText() 2807 Rect boundsInScreen = boundsInParent; in createAccessibilityNodeInfoForVirtualButton() local 2810 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibilityNodeInfoForVirtualButton() 2811 info.setBoundsInScreen(boundsInScreen); in createAccessibilityNodeInfoForVirtualButton() 2855 Rect boundsInScreen = boundsInParent; in createAccessibilityNodeInfoForNumberPicker() local 2858 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibilityNodeInfoForNumberPicker() 2859 boundsInScreen.scale(applicationScale); in createAccessibilityNodeInfoForNumberPicker() 2860 info.setBoundsInScreen(boundsInScreen); in createAccessibilityNodeInfoForNumberPicker()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | AccessibilityManagerService.java | 2934 reportedWindow.setBoundsInScreen(window.boundsInScreen); in populateReportedWindowLocked() 3093 Rect boundsInScreen = mTempRect; in getAccessibilityFocusClickPointInScreenNotLocked() local 3094 focus.getBoundsInScreen(boundsInScreen); in getAccessibilityFocusClickPointInScreenNotLocked() 3099 boundsInScreen.offset((int) -spec.offsetX, (int) -spec.offsetY); in getAccessibilityFocusClickPointInScreenNotLocked() 3100 boundsInScreen.scale(1 / spec.scale); in getAccessibilityFocusClickPointInScreenNotLocked() 3106 if (!boundsInScreen.intersect(windowBounds)) { in getAccessibilityFocusClickPointInScreenNotLocked() 3113 if (!boundsInScreen.intersect(0, 0, screenSize.x, screenSize.y)) { in getAccessibilityFocusClickPointInScreenNotLocked() 3117 outPoint.set(boundsInScreen.centerX(), boundsInScreen.centerY()); in getAccessibilityFocusClickPointInScreenNotLocked()
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 79529 Landroid/view/WindowInfo;->boundsInScreen:Landroid/graphics/Rect;
|