/aosp12/frameworks/base/core/tests/coretests/src/android/view/ |
H A D | InsetsVisibilitiesTest.java | 28 import android.view.InsetsState.InternalInsetsType; 56 for (@InternalInsetsType int type = FIRST_TYPE; type <= LAST_TYPE; type++) { in testEquals() 63 for (@InternalInsetsType int type = FIRST_TYPE; type <= LAST_TYPE; type++) { in testEquals() 73 for (@InternalInsetsType int type = FIRST_TYPE; type <= LAST_TYPE; type++) { in testSet() 93 for (@InternalInsetsType int type = FIRST_TYPE; type <= LAST_TYPE; type++) { in testCopyConstructor() 109 for (@InternalInsetsType int type = FIRST_TYPE; type <= LAST_TYPE; type++) { in testGetterAndSetter() 113 for (@InternalInsetsType int type = FIRST_TYPE; type <= LAST_TYPE; type++) { in testGetterAndSetter()
|
H A D | InsetsControllerTest.java | 63 import android.view.InsetsState.InternalInsetsType; 670 for (@InternalInsetsType int type = FIRST_TYPE; type <= LAST_TYPE; type++) { in testResizeAnimation_insetsTypes() 679 private void doTestResizeAnimation_insetsTypes(@InternalInsetsType int type, in doTestResizeAnimation_insetsTypes() 707 final @InternalInsetsType int type = ITYPE_STATUS_BAR; in testResizeAnimation_displayFrame() 730 final @InternalInsetsType int type = ITYPE_STATUS_BAR; in testResizeAnimation_visibility() 908 private InsetsSourceControl createControl(@InternalInsetsType int type) { in createControl() 916 private InsetsSourceControl[] createSingletonControl(@InternalInsetsType int type) { in createSingletonControl()
|
/aosp12/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | InsetsStateController.java | 50 import android.view.InsetsState.InternalInsetsType; 123 final @InternalInsetsType int type = provider != null in getInsetsForWindow() 132 final @InternalInsetsType int type = getInsetsTypeForLayoutParams(attrs); in getInsetsForWindowMetrics() 146 private static @InternalInsetsType 160 for (@InternalInsetsType int insetsType : attrs.providesInsetsTypes) { in getInsetsTypeForLayoutParams() 178 private InsetsState getInsetsForTarget(@InternalInsetsType int type, in getInsetsForTarget() 264 InsetsSourceProvider getSourceProvider(@InternalInsetsType int type) { in getSourceProvider() 454 private void onControlChanged(@InternalInsetsType int type, in onControlChanged() 485 void onControlFakeTargetChanged(@InternalInsetsType int type, in onControlFakeTargetChanged() 507 @InternalInsetsType int type, boolean fake) { in removeFromControlMaps() [all …]
|
H A D | InsetsPolicy.java | 45 import android.view.InsetsState.InternalInsetsType; 83 final @InternalInsetsType int type = control.getType(); 157 boolean isHidden(@InternalInsetsType int type) { in isHidden() 162 void showTransient(@InternalInsetsType int[] types, boolean isGestureOnSystemBar) { in showTransient() 165 final @InternalInsetsType int type = types[i]; in showTransient() 205 final @InternalInsetsType int type = mShowingTransientTypes.get(i); in hideTransient() 214 boolean isTransient(@InternalInsetsType int type) { in isTransient() 238 final @InternalInsetsType int type = mShowingTransientTypes.get(i); in adjustVisibilityForTransientTypes() 308 final @InternalInsetsType int type = mShowingTransientTypes.get(i); in checkAbortTransient() 465 final @InternalInsetsType int type = showingTransientTypes.get(i); in startAnimation() [all …]
|
H A D | InsetsControlTarget.java | 21 import android.view.InsetsState.InternalInsetsType; 45 default boolean getRequestedVisibility(@InternalInsetsType int type) { in getRequestedVisibility()
|
H A D | DisplayPolicy.java | 145 import android.view.InsetsState.InternalInsetsType; 1081 for (@InternalInsetsType int insetType : attrs.providesInsetsTypes) { in validateAddingWindowLw() 1230 for (@InternalInsetsType int insetsType : attrs.providesInsetsTypes) { in addWindowLw() 2340 private int getAltBarWidth(@InternalInsetsType int insetsType) { 2349 private int getAltBarHeight(@InternalInsetsType int insetsType) {
|
H A D | DisplayContent.java | 212 import android.view.InsetsState.InternalInsetsType; 1378 void setInsetProvider(@InternalInsetsType int type, WindowState win, in setInsetProvider() 1393 void setInsetProvider(@InternalInsetsType int type, WindowState win, in setInsetProvider() 6487 public boolean getRequestedVisibility(@InternalInsetsType int type) { in getRequestedVisibility()
|
H A D | WindowState.java | 238 import android.view.InsetsState.InternalInsetsType; 882 public boolean getRequestedVisibility(@InternalInsetsType int type) { in getRequestedVisibility() 1717 for (@InternalInsetsType int type = 0; type < InsetsState.SIZE; type++) { in getInsetsStateWithVisibilityOverride()
|
/aosp12/frameworks/base/core/java/android/view/ |
H A D | InsetsState.java | 94 public @interface InternalInsetsType {} annotation in InsetsState 442 public InsetsSource getSource(@InternalInsetsType int type) { in getSource() 452 public @Nullable InsetsSource peekSource(@InternalInsetsType int type) { in peekSource() 464 public boolean getSourceOrDefaultVisibility(@InternalInsetsType int type) { in getSourceOrDefaultVisibility() 508 public boolean removeSource(@InternalInsetsType int type) { in removeSource() 522 public void setSourceVisible(@InternalInsetsType int type, boolean visible) { in setSourceVisible() 643 public static @Type.InsetsType int toPublicType(@InternalInsetsType int type) { in toPublicType() 680 public static boolean getDefaultVisibility(@InternalInsetsType int type) { in getDefaultVisibility() 684 public static boolean containsType(@InternalInsetsType int[] types, in containsType() 685 @InternalInsetsType int type) { in containsType() [all …]
|
H A D | InsetsAnimationControlRunner.java | 22 import android.view.InsetsState.InternalInsetsType; 68 default boolean controlsInternalType(@InternalInsetsType int type) { in controlsInternalType()
|
H A D | InsetsSource.java | 33 import android.view.InsetsState.InternalInsetsType; 44 private final @InternalInsetsType int mType; 53 public InsetsSource(@InternalInsetsType int type) { in InsetsSource() 92 public @InternalInsetsType int getType() { in getType()
|
H A D | WindowInsetsController.java | 26 import android.view.InsetsState.InternalInsetsType; 271 boolean isRequestedVisible(@InternalInsetsType int type); in isRequestedVisible()
|
H A D | InsetsVisibilities.java | 65 public void setVisibility(@InsetsState.InternalInsetsType int type, boolean visible) { in setVisibility() 76 public boolean getVisibility(@InsetsState.InternalInsetsType int type) { in getVisibility()
|
H A D | InsetsSourceControl.java | 31 import android.view.InsetsState.InternalInsetsType; 42 private final @InternalInsetsType int mType; 53 public InsetsSourceControl(@InternalInsetsType int type, @Nullable SurfaceControl leash, in InsetsSourceControl()
|
H A D | InsetsController.java | 51 import android.view.InsetsState.InternalInsetsType; 106 void updateCompatSysUiVisibility(@InternalInsetsType int type, boolean visible, in updateCompatSysUiVisibility() 711 for (@InternalInsetsType int type = 0; type < InsetsState.SIZE; type++) { in updateState() 727 for (@InternalInsetsType int type = 0; type < InsetsState.SIZE; type++) { in updateState() 781 final @InternalInsetsType int type = internalTypes.valueAt(i); in startResizingAnimationIfNeeded() 861 final @InternalInsetsType int type = control.getType(); in onControlsChanged() 949 @InternalInsetsType int internalType = internalTypes.valueAt(i); in show() 988 @InternalInsetsType int internalType = internalTypes.valueAt(i); in hide() 1340 public @NonNull InsetsSourceConsumer getSourceConsumer(@InternalInsetsType int type) { in getSourceConsumer() 1378 public @AnimationType int getAnimationType(@InternalInsetsType int type) { in getAnimationType() [all …]
|
H A D | InsetsSourceConsumer.java | 41 import android.view.InsetsState.InternalInsetsType; 80 protected final @InternalInsetsType int mType; 101 public InsetsSourceConsumer(@InternalInsetsType int type, InsetsState state, in InsetsSourceConsumer()
|
H A D | InsetsResizeAnimationRunner.java | 36 import android.view.InsetsState.InternalInsetsType; 138 for (@InternalInsetsType int type = 0; type < InsetsState.SIZE; type++) { in applyChangeInsets()
|
/aosp12/frameworks/base/services/core/java/com/android/server/statusbar/ |
H A D | StatusBarManagerInternal.java | 25 import android.view.InsetsState.InternalInsetsType; 139 void showTransient(int displayId, @InternalInsetsType int[] types, in showTransient() 143 void abortTransient(int displayId, @InternalInsetsType int[] types); in abortTransient()
|
H A D | StatusBarManagerService.java | 62 import android.view.InsetsState.InternalInsetsType; 543 public void showTransient(int displayId, @InternalInsetsType int[] types, 554 public void abortTransient(int displayId, @InternalInsetsType int[] types) { 1137 private void showTransient(@InternalInsetsType int[] types) { in showTransient() 1143 private void clearTransient(@InternalInsetsType int[] types) { in clearTransient()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
H A D | StatusBarCommandQueueCallbacks.java | 42 import android.view.InsetsState.InternalInsetsType; 177 public void abortTransient(int displayId, @InternalInsetsType int[] types) { in abortTransient() 498 public void showTransient(int displayId, @InternalInsetsType int[] types, in showTransient()
|
/aosp12/packages/apps/Car/SystemUI/src/com/android/systemui/wm/ |
H A D | DisplaySystemBarsInsetsControllerHost.java | 98 @InsetsState.InternalInsetsType int type, boolean visible, boolean hasControl) { in updateCompatSysUiVisibility()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
H A D | CommandQueue.java | 53 import android.view.InsetsState.InternalInsetsType; 348 default void showTransient(int displayId, @InternalInsetsType int[] types) { } in showTransient() 353 default void showTransient(int displayId, @InternalInsetsType int[] types, in showTransient() 361 default void abortTransient(int displayId, @InternalInsetsType int[] types) { } in abortTransient()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/ |
H A D | NavigationBar.java | 88 import android.view.InsetsState.InternalInsetsType; 997 public void showTransient(int displayId, @InternalInsetsType int[] types, in showTransient() 1013 public void abortTransient(int displayId, @InternalInsetsType int[] types) { in abortTransient()
|
/aosp12/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/ |
H A D | SystemBarConfigs.java | 356 @InsetsState.InternalInsetsType
|
/aosp12/frameworks/base/core/java/com/android/internal/policy/ |
H A D | DecorView.java | 83 import android.view.InsetsState.InternalInsetsType; 2679 final @InternalInsetsType int insetsType; 2683 @InternalInsetsType int insetsType) { in ColorViewAttributes()
|