Searched refs:sideOverrides (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/tests/coretests/src/android/view/ |
D | DisplayCutoutTest.java | 579 final int[] sideOverrides = new int[] {BOUNDS_POSITION_TOP, BOUNDS_POSITION_BOTTOM, in testGetRotatedCutoutWithOverride_top_rot0() local 583 Insets.of(20, 0, 20, 0), null, sideOverrides); in testGetRotatedCutoutWithOverride_top_rot0() 586 Insets.of(20, 0, 20, 0), null, sideOverrides); in testGetRotatedCutoutWithOverride_top_rot0() 594 final int[] sideOverrides = new int[] {BOUNDS_POSITION_TOP, BOUNDS_POSITION_BOTTOM, in testGetRotatedCutoutWithOverride_top_rot90() local 598 Insets.of(0, 20, 0, 20), createParserInfo(ROTATION_90), sideOverrides); in testGetRotatedCutoutWithOverride_top_rot90() 601 Insets.of(20, 0, 20, 0), null, sideOverrides); in testGetRotatedCutoutWithOverride_top_rot90() 609 final int[] sideOverrides = new int[] {BOUNDS_POSITION_TOP, BOUNDS_POSITION_BOTTOM, in testGetRotatedCutoutWithOverride_top_rot180() local 614 Insets.of(20, 0, 20, 0), createParserInfo(ROTATION_180), sideOverrides); in testGetRotatedCutoutWithOverride_top_rot180() 617 Insets.of(20, 0, 20, 0), null, sideOverrides); in testGetRotatedCutoutWithOverride_top_rot180() 625 final int[] sideOverrides = new int[] {BOUNDS_POSITION_TOP, BOUNDS_POSITION_BOTTOM, in testGetRotatedCutoutWithOverride_top_rot270() local [all …]
|
/frameworks/base/core/java/android/view/ |
D | DisplayCutout.java | 479 @Nullable int[] sideOverrides) { in DisplayCutout() argument 482 info, sideOverrides); in DisplayCutout() 567 CutoutPathParserInfo info, int[] sideOverrides) { in DisplayCutout() argument 572 mSideOverrides = sideOverrides; in DisplayCutout() 879 private static String sideOverridesToString(int[] sideOverrides) { in sideOverridesToString() argument 880 if (sideOverrides == null) { in sideOverridesToString() 885 final int length = sideOverrides.length; in sideOverridesToString() 887 sb.append("length=").append(sideOverrides.length).append(". "); in sideOverridesToString() 891 final int override = sideOverrides[i]; in sideOverridesToString() 1206 int displayHeight, float density, Insets waterfallInsets, int[] sideOverrides) { [all …]
|