Home
last modified time | relevance | path

Searched refs:providesInsetsTypes (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
DWindowManagerWrapper.java105 int[] providesInsetsTypes) { in setProvidesInsetsTypes() argument
106 params.providesInsetsTypes = providesInsetsTypes; in setProvidesInsetsTypes()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DDisplayPolicyLayoutTests.java197 win.mAttrs.providesInsetsTypes = new int[]{ITYPE_STATUS_BAR, ITYPE_TOP_GESTURES}; in addingWindow_withInsetsTypes()
225 win.mAttrs.providesInsetsTypes = new int[]{ITYPE_STATUS_BAR}; in addingWindow_ignoresInsetsTypes_InWindowTypeWithPredefinedInsets()
239 win1.mAttrs.providesInsetsTypes = new int[]{ITYPE_STATUS_BAR, ITYPE_NAVIGATION_BAR}; in addingWindow_throwsException_WithMultipleInsetTypes()
244 win2.mAttrs.providesInsetsTypes = new int[]{ITYPE_CLIMATE_BAR, ITYPE_EXTRA_NAVIGATION_BAR}; in addingWindow_throwsException_WithMultipleInsetTypes()
254 win1.mAttrs.providesInsetsTypes = new int[]{ITYPE_NAVIGATION_BAR}; in addingWindow_variousGravities_alternateBarPosUpdated()
263 win2.mAttrs.providesInsetsTypes = new int[]{ITYPE_NAVIGATION_BAR}; in addingWindow_variousGravities_alternateBarPosUpdated()
272 win3.mAttrs.providesInsetsTypes = new int[]{ITYPE_NAVIGATION_BAR}; in addingWindow_variousGravities_alternateBarPosUpdated()
281 win4.mAttrs.providesInsetsTypes = new int[]{ITYPE_NAVIGATION_BAR}; in addingWindow_variousGravities_alternateBarPosUpdated()
/frameworks/base/core/java/android/view/
DWindowManager.java3468 public @InsetsState.InternalInsetsType int[] providesInsetsTypes; field in WindowManager.LayoutParams
3817 if (providesInsetsTypes != null) { in writeToParcel()
3818 out.writeInt(providesInsetsTypes.length); in writeToParcel()
3819 out.writeIntArray(providesInsetsTypes); in writeToParcel()
3891 providesInsetsTypes = new int[insetsTypesLength]; in LayoutParams()
3892 in.readIntArray(providesInsetsTypes); in LayoutParams()
4185 if (!Arrays.equals(providesInsetsTypes, o.providesInsetsTypes)) { in copyFrom()
4186 providesInsetsTypes = o.providesInsetsTypes; in copyFrom()
4377 if (providesInsetsTypes != null) { in toString()
4380 for (int i = 0; i < providesInsetsTypes.length; ++i) { in toString()
[all …]
/frameworks/base/services/core/java/com/android/server/wm/
DInsetsStateController.java159 if (attrs.providesInsetsTypes != null) { in getInsetsTypeForLayoutParams()
160 for (@InternalInsetsType int insetsType : attrs.providesInsetsTypes) { in getInsetsTypeForLayoutParams()
DDisplayPolicy.java1003 if (attrs.providesInsetsTypes != null) { in validateAddingWindowLw()
1010 enforceSingleInsetsTypeCorrespondingToWindowType(attrs.providesInsetsTypes); in validateAddingWindowLw()
1012 for (@InternalInsetsType int insetType : attrs.providesInsetsTypes) { in validateAddingWindowLw()
1144 if (attrs.providesInsetsTypes != null) { in addWindowLw()
1145 for (@InternalInsetsType int insetsType : attrs.providesInsetsTypes) { in addWindowLw()
DInsetsSourceProvider.java406 final int[] provides = mWin.mAttrs.providesInsetsTypes; in isMirroredSource()
DWindowManagerService.java2252 if (!Arrays.equals(win.mAttrs.providesInsetsTypes, attrs.providesInsetsTypes)) { in relayoutWindow()