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

/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DMagnificationController.java288 * @param outRegion the region to populate
290 public void getMagnificationRegion(@NonNull Region outRegion) { argument
292 outRegion.set(mMagnificationRegion);
H A DAccessibilityManagerService.java4592 Region outRegion) {
4611 outRegion.set(currentWindowBounds);
4612 windowInteractiveRegion = outRegion;
4591 computePartialInteractiveRegionForWindowLocked(int windowId, Region outRegion) argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DDockedStackDividerController.java302 void getTouchRegion(Rect outRegion) { argument
303 outRegion.set(mTouchRegion);
304 outRegion.offset(mWindow.getFrameLw().left, mWindow.getFrameLw().top);
H A DWindowState.java3051 private static void applyInsets(Region outRegion, Rect frame, Rect inset) { argument
3052 outRegion.set(
3057 void getTouchableRegion(Region outRegion) { argument
3062 outRegion.set(frame);
3065 applyInsets(outRegion, frame, mGivenContentInsets);
3068 applyInsets(outRegion, frame, mGivenVisibleInsets);
3071 outRegion.set(mGivenTouchableRegion);
3072 outRegion.translate(frame.left, frame.top);
3076 cropRegionToStackBoundsIfNeeded(outRegion);

Completed in 96 milliseconds