/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/power/ |
D | PowerUITest.java | 369 boolean shouldShow = mPowerUI.shouldShowHybridWarning(state.get()); in testShouldShowHybridWarning_lowLevelWarning() 370 assertThat(shouldShow).isTrue(); in testShouldShowHybridWarning_lowLevelWarning() 374 shouldShow = mPowerUI.shouldShowHybridWarning(state.get()); in testShouldShowHybridWarning_lowLevelWarning() 375 assertThat(shouldShow).isFalse(); in testShouldShowHybridWarning_lowLevelWarning() 380 shouldShow = mPowerUI.shouldShowHybridWarning(state.get()); in testShouldShowHybridWarning_lowLevelWarning() 381 assertThat(shouldShow).isFalse(); in testShouldShowHybridWarning_lowLevelWarning() 387 shouldShow = mPowerUI.shouldShowHybridWarning(state.get()); in testShouldShowHybridWarning_lowLevelWarning() 388 assertThat(shouldShow).isFalse(); in testShouldShowHybridWarning_lowLevelWarning() 392 shouldShow = mPowerUI.shouldShowHybridWarning(state.get()); in testShouldShowHybridWarning_lowLevelWarning() 393 assertThat(shouldShow).isTrue(); in testShouldShowHybridWarning_lowLevelWarning() [all …]
|
/frameworks/base/core/java/android/view/ |
D | WindowManagerImpl.java | 162 public void setShouldShowWithInsecureKeyguard(int displayId, boolean shouldShow) { in setShouldShowWithInsecureKeyguard() argument 165 .setShouldShowWithInsecureKeyguard(displayId, shouldShow); in setShouldShowWithInsecureKeyguard() 171 public void setShouldShowSystemDecors(int displayId, boolean shouldShow) { in setShouldShowSystemDecors() argument 174 .setShouldShowSystemDecors(displayId, shouldShow); in setShouldShowSystemDecors() 189 public void setShouldShowIme(int displayId, boolean shouldShow) { in setShouldShowIme() argument 191 WindowManagerGlobal.getWindowManagerService().setShouldShowIme(displayId, shouldShow); in setShouldShowIme()
|
D | IWindowManager.aidl | 582 void setShouldShowWithInsecureKeyguard(int displayId, boolean shouldShow); in setShouldShowWithInsecureKeyguard() argument 604 void setShouldShowSystemDecors(int displayId, boolean shouldShow); in setShouldShowSystemDecors() argument 624 void setShouldShowIme(int displayId, boolean shouldShow); in setShouldShowIme() argument
|
D | WindowManager.java | 487 default void setShouldShowWithInsecureKeyguard(int displayId, boolean shouldShow) { in setShouldShowWithInsecureKeyguard() argument 502 default void setShouldShowSystemDecors(int displayId, boolean shouldShow) { in setShouldShowSystemDecors() argument 528 default void setShouldShowIme(int displayId, boolean shouldShow) { in setShouldShowIme() argument
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/view/ |
D | WindowManagerImpl.java | 83 public void setShouldShowWithInsecureKeyguard(int displayId, boolean shouldShow) { in setShouldShowWithInsecureKeyguard() argument 88 public void setShouldShowSystemDecors(int displayId, boolean shouldShow) { in setShouldShowSystemDecors() argument 93 public void setShouldShowIme(int displayId, boolean shouldShow) { in setShouldShowIme() argument
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DisplayWindowSettings.java | 337 void setShouldShowWithInsecureKeyguardLocked(DisplayContent dc, boolean shouldShow) { in setShouldShowWithInsecureKeyguardLocked() argument 338 if (!dc.isPrivate() && shouldShow) { in setShouldShowWithInsecureKeyguardLocked() 345 entry.mShouldShowWithInsecureKeyguard = shouldShow; in setShouldShowWithInsecureKeyguardLocked() 363 void setShouldShowSystemDecorsLocked(DisplayContent dc, boolean shouldShow) { in setShouldShowSystemDecorsLocked() argument 364 if (dc.getDisplayId() == Display.DEFAULT_DISPLAY && !shouldShow) { in setShouldShowSystemDecorsLocked() 371 entry.mShouldShowSystemDecors = shouldShow; in setShouldShowSystemDecorsLocked() 389 void setShouldShowImeLocked(DisplayContent dc, boolean shouldShow) { in setShouldShowImeLocked() argument 390 if (dc.getDisplayId() == Display.DEFAULT_DISPLAY && !shouldShow) { in setShouldShowImeLocked() 397 entry.mShouldShowIme = shouldShow; in setShouldShowImeLocked()
|
D | WindowManagerService.java | 6987 public void setShouldShowWithInsecureKeyguard(int displayId, boolean shouldShow) { in setShouldShowWithInsecureKeyguard() argument 7002 shouldShow); in setShouldShowWithInsecureKeyguard() 7029 public void setShouldShowSystemDecors(int displayId, boolean shouldShow) { in setShouldShowSystemDecors() argument 7046 mDisplayWindowSettings.setShouldShowSystemDecorsLocked(displayContent, shouldShow); in setShouldShowSystemDecors() 7074 public void setShouldShowIme(int displayId, boolean shouldShow) { in setShouldShowIme() argument 7091 mDisplayWindowSettings.setShouldShowImeLocked(displayContent, shouldShow); in setShouldShowIme()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
D | RecentsOnboarding.java | 392 if (!shouldShow()) { in show() 434 private boolean shouldShow() { in shouldShow() method in RecentsOnboarding
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | ScreenDecorations.java | 987 void setShowProtection(boolean shouldShow) { in setShowProtection() argument 988 if (mShowProtection == shouldShow) { in setShowProtection() 992 mShowProtection = shouldShow; in setShowProtection()
|
/frameworks/base/core/java/android/widget/ |
D | Editor.java | 4648 private boolean shouldShow() { in shouldShow() method in Editor.HandleView 4759 if (shouldShow()) { in updatePosition() 5004 final boolean shouldShow = checkForTransforms() /*check not rotated and compute scale*/ in updateMagnifier() 5007 if (shouldShow) { in updateMagnifier()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayout.java | 4815 boolean shouldShow = !mAmbientState.isFullyHidden() || !onKeyguard(); 4816 setVisibility(shouldShow ? View.VISIBLE : View.INVISIBLE);
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 81331 Landroid/widget/Editor$HandleView;->shouldShow()Z
|