Searched refs:outRegion (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DMagnificationController.java295 * @param outRegion the region to populate
297 public void getMagnificationRegion(@NonNull Region outRegion) { argument
299 outRegion.set(mMagnificationRegion);
H A DAccessibilityManagerService.java3244 Region outRegion) {
3263 outRegion.set(currentWindowBounds);
3264 windowInteractiveRegion = outRegion;
3243 computePartialInteractiveRegionForWindowLocked(int windowId, Region outRegion) argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DDockedStackDividerController.java352 void getTouchRegion(Rect outRegion) { argument
353 outRegion.set(mTouchRegion);
354 outRegion.offset(mWindow.getFrameLw().left, mWindow.getFrameLw().top);
H A DWindowState.java2897 private static void applyInsets(Region outRegion, Rect frame, Rect inset) { argument
2898 outRegion.set(
2903 void getTouchableRegion(Region outRegion) { argument
2908 outRegion.set(frame);
2911 applyInsets(outRegion, frame, mGivenContentInsets);
2914 applyInsets(outRegion, frame, mGivenVisibleInsets);
2917 outRegion.set(mGivenTouchableRegion);
2918 outRegion.translate(frame.left, frame.top);
2922 cropRegionToStackBoundsIfNeeded(outRegion);

Completed in 73 milliseconds