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

/frameworks/base/core/java/android/view/
H A DThreadedRenderer.java448 * @param surfaceInsets The drawing surface insets to apply
454 Surface surface, Rect surfaceInsets) throws OutOfResourcesException {
459 setup(width, height, attachInfo, surfaceInsets);
544 * @param surfaceInsets The drawing surface insets to apply
546 void setup(int width, int height, AttachInfo attachInfo, Rect surfaceInsets) { argument
550 if (surfaceInsets != null && (surfaceInsets.left != 0 || surfaceInsets.right != 0
551 || surfaceInsets.top != 0 || surfaceInsets
453 initializeIfNeeded(int width, int height, View.AttachInfo attachInfo, Surface surface, Rect surfaceInsets) argument
[all...]
H A DWindowManager.java1479 public final Rect surfaceInsets = new Rect(); field in class:WindowManager.LayoutParams
1486 * @see #surfaceInsets
1496 * @see #surfaceInsets
1813 surfaceInsets.set(0, 0, 0, 0);
1815 surfaceInsets.set(
1816 Math.max(surfaceInset, surfaceInsets.left),
1817 Math.max(surfaceInset, surfaceInsets.top),
1818 Math.max(surfaceInset, surfaceInsets.right),
1819 Math.max(surfaceInset, surfaceInsets.bottom));
1871 out.writeInt(surfaceInsets
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DAppTransition.java1051 @Nullable Rect surfaceInsets, boolean freeform, int taskId) {
1069 containingFrame, surfaceInsets, taskId);
1072 containingFrame, surfaceInsets, taskId);
1175 @Nullable Rect surfaceInsets, int taskId) {
1177 return createAspectScaledThumbnailFreeformAnimationLocked(mTmpRect, frame, surfaceInsets,
1182 @Nullable Rect surfaceInsets, int taskId) {
1184 return createAspectScaledThumbnailFreeformAnimationLocked(frame, mTmpRect, surfaceInsets,
1189 Rect destFrame, @Nullable Rect surfaceInsets, boolean enter) {
1197 final int surfaceInsetsH = surfaceInsets == null
1198 ? 0 : surfaceInsets
1049 createAspectScaledThumbnailEnterExitAnimationLocked(int thumbTransitState, int uiMode, int orientation, int transit, Rect containingFrame, Rect contentInsets, @Nullable Rect surfaceInsets, boolean freeform, int taskId) argument
1174 createAspectScaledThumbnailEnterFreeformAnimationLocked(Rect frame, @Nullable Rect surfaceInsets, int taskId) argument
1181 createAspectScaledThumbnailExitFreeformAnimationLocked(Rect frame, @Nullable Rect surfaceInsets, int taskId) argument
1188 createAspectScaledThumbnailFreeformAnimationLocked(Rect sourceFrame, Rect destFrame, @Nullable Rect surfaceInsets, boolean enter) argument
1422 loadAnimation(WindowManager.LayoutParams lp, int transit, boolean enter, int uiMode, int orientation, Rect frame, Rect displayFrame, Rect insets, @Nullable Rect surfaceInsets, boolean isVoiceInteraction, boolean freeform, int taskId) argument
[all...]

Completed in 947 milliseconds