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

/frameworks/base/core/java/android/view/
H A DThreadedRenderer.java479 * @param surfaceInsets The drawing surface insets to apply
485 Surface surface, Rect surfaceInsets) throws OutOfResourcesException {
490 setup(width, height, attachInfo, surfaceInsets);
556 * @param surfaceInsets The drawing surface insets to apply
558 void setup(int width, int height, AttachInfo attachInfo, Rect surfaceInsets) { argument
562 if (surfaceInsets != null && (surfaceInsets.left != 0 || surfaceInsets.right != 0
563 || surfaceInsets.top != 0 || surfaceInsets
484 initializeIfNeeded(int width, int height, View.AttachInfo attachInfo, Surface surface, Rect surfaceInsets) argument
[all...]
H A DWindowManager.java2036 public final Rect surfaceInsets = new Rect(); field in class:WindowManager.LayoutParams
2043 * @see #surfaceInsets
2053 * @see #surfaceInsets
2525 surfaceInsets.set(0, 0, 0, 0);
2527 surfaceInsets.set(
2528 Math.max(surfaceInset, surfaceInsets.left),
2529 Math.max(surfaceInset, surfaceInsets.top),
2530 Math.max(surfaceInset, surfaceInsets.right),
2531 Math.max(surfaceInset, surfaceInsets.bottom));
2609 out.writeInt(surfaceInsets
[all...]
H A DViewRootImpl.java1024 final Rect insets = attrs.surfaceInsets;
1053 final int oldInsetLeft = mWindowAttributes.surfaceInsets.left;
1054 final int oldInsetTop = mWindowAttributes.surfaceInsets.top;
1055 final int oldInsetRight = mWindowAttributes.surfaceInsets.right;
1056 final int oldInsetBottom = mWindowAttributes.surfaceInsets.bottom;
1095 mWindowAttributes.surfaceInsets.set(
1098 } else if (mWindowAttributes.surfaceInsets.left != oldInsetLeft
1099 || mWindowAttributes.surfaceInsets.top != oldInsetTop
1100 || mWindowAttributes.surfaceInsets.right != oldInsetRight
1101 || mWindowAttributes.surfaceInsets
3357 drawSoftware(Surface surface, AttachInfo attachInfo, int xoff, int yoff, boolean scalingRequired, Rect dirty, Rect surfaceInsets) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java1166 @Nullable Rect surfaceInsets, @Nullable Rect stableInsets, boolean freeform,
1185 containingFrame, surfaceInsets, taskId);
1188 containingFrame, surfaceInsets, taskId);
1300 @Nullable Rect surfaceInsets, int taskId) {
1302 return createAspectScaledThumbnailFreeformAnimationLocked(mTmpRect, frame, surfaceInsets,
1307 @Nullable Rect surfaceInsets, int taskId) {
1309 return createAspectScaledThumbnailFreeformAnimationLocked(frame, mTmpRect, surfaceInsets,
1314 Rect destFrame, @Nullable Rect surfaceInsets, boolean enter) {
1322 final int surfaceInsetsH = surfaceInsets == null
1323 ? 0 : surfaceInsets
1164 createAspectScaledThumbnailEnterExitAnimationLocked(int thumbTransitState, int uiMode, int orientation, int transit, Rect containingFrame, Rect contentInsets, @Nullable Rect surfaceInsets, @Nullable Rect stableInsets, boolean freeform, int taskId) argument
1299 createAspectScaledThumbnailEnterFreeformAnimationLocked(Rect frame, @Nullable Rect surfaceInsets, int taskId) argument
1306 createAspectScaledThumbnailExitFreeformAnimationLocked(Rect frame, @Nullable Rect surfaceInsets, int taskId) argument
1313 createAspectScaledThumbnailFreeformAnimationLocked(Rect sourceFrame, Rect destFrame, @Nullable Rect surfaceInsets, boolean enter) argument
1552 loadAnimation(LayoutParams lp, int transit, boolean enter, int uiMode, int orientation, Rect frame, Rect displayFrame, Rect insets, @Nullable Rect surfaceInsets, @Nullable Rect stableInsets, boolean isVoiceInteraction, boolean freeform, int taskId) argument
[all...]

Completed in 91 milliseconds