/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/power/ |
D | PowerUITest.java | 390 boolean shouldShow = mPowerUI.shouldShowHybridWarning(state.get()); in testShouldShowHybridWarning_lowLevelWarning() 391 assertThat(shouldShow).isTrue(); in testShouldShowHybridWarning_lowLevelWarning() 395 shouldShow = mPowerUI.shouldShowHybridWarning(state.get()); in testShouldShowHybridWarning_lowLevelWarning() 396 assertThat(shouldShow).isFalse(); in testShouldShowHybridWarning_lowLevelWarning() 401 shouldShow = mPowerUI.shouldShowHybridWarning(state.get()); in testShouldShowHybridWarning_lowLevelWarning() 402 assertThat(shouldShow).isFalse(); in testShouldShowHybridWarning_lowLevelWarning() 408 shouldShow = mPowerUI.shouldShowHybridWarning(state.get()); in testShouldShowHybridWarning_lowLevelWarning() 409 assertThat(shouldShow).isFalse(); in testShouldShowHybridWarning_lowLevelWarning() 413 shouldShow = mPowerUI.shouldShowHybridWarning(state.get()); in testShouldShowHybridWarning_lowLevelWarning() 414 assertThat(shouldShow).isTrue(); in testShouldShowHybridWarning_lowLevelWarning() [all …]
|
/frameworks/base/core/java/android/view/ |
D | WindowManagerImpl.java | 177 public void setShouldShowWithInsecureKeyguard(int displayId, boolean shouldShow) { in setShouldShowWithInsecureKeyguard() argument 180 .setShouldShowWithInsecureKeyguard(displayId, shouldShow); in setShouldShowWithInsecureKeyguard() 186 public void setShouldShowSystemDecors(int displayId, boolean shouldShow) { in setShouldShowSystemDecors() argument 189 .setShouldShowSystemDecors(displayId, shouldShow); in setShouldShowSystemDecors() 204 public void setShouldShowIme(int displayId, boolean shouldShow) { in setShouldShowIme() argument 206 WindowManagerGlobal.getWindowManagerService().setShouldShowIme(displayId, shouldShow); in setShouldShowIme()
|
D | IWindowManager.aidl | 645 void setShouldShowWithInsecureKeyguard(int displayId, boolean shouldShow); in setShouldShowWithInsecureKeyguard() argument 667 void setShouldShowSystemDecors(int displayId, boolean shouldShow); in setShouldShowSystemDecors() argument 687 void setShouldShowIme(int displayId, boolean shouldShow); in setShouldShowIme() argument
|
D | WindowManager.java | 573 default void setShouldShowWithInsecureKeyguard(int displayId, boolean shouldShow) { in setShouldShowWithInsecureKeyguard() argument 588 default void setShouldShowSystemDecors(int displayId, boolean shouldShow) { in setShouldShowSystemDecors() argument 614 default void setShouldShowIme(int displayId, boolean shouldShow) { in setShouldShowIme() argument
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/view/ |
D | WindowManagerImpl.java | 98 public void setShouldShowWithInsecureKeyguard(int displayId, boolean shouldShow) { in setShouldShowWithInsecureKeyguard() argument 103 public void setShouldShowSystemDecors(int displayId, boolean shouldShow) { in setShouldShowSystemDecors() argument 108 public void setShouldShowIme(int displayId, boolean shouldShow) { in setShouldShowIme() argument
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DisplayWindowSettings.java | 316 void setShouldShowWithInsecureKeyguardLocked(DisplayContent dc, boolean shouldShow) { in setShouldShowWithInsecureKeyguardLocked() argument 317 if (!dc.isPrivate() && shouldShow) { in setShouldShowWithInsecureKeyguardLocked() 324 entry.mShouldShowWithInsecureKeyguard = shouldShow; in setShouldShowWithInsecureKeyguardLocked() 342 void setShouldShowSystemDecorsLocked(DisplayContent dc, boolean shouldShow) { in setShouldShowSystemDecorsLocked() argument 343 if (dc.getDisplayId() == Display.DEFAULT_DISPLAY && !shouldShow) { in setShouldShowSystemDecorsLocked() 350 entry.mShouldShowSystemDecors = shouldShow; in setShouldShowSystemDecorsLocked() 368 void setShouldShowImeLocked(DisplayContent dc, boolean shouldShow) { in setShouldShowImeLocked() argument 369 if (dc.getDisplayId() == Display.DEFAULT_DISPLAY && !shouldShow) { in setShouldShowImeLocked() 376 entry.mShouldShowIme = shouldShow; in setShouldShowImeLocked()
|
D | WindowManagerService.java | 7101 public void setShouldShowWithInsecureKeyguard(int displayId, boolean shouldShow) { in setShouldShowWithInsecureKeyguard() argument 7117 shouldShow); in setShouldShowWithInsecureKeyguard() 7144 public void setShouldShowSystemDecors(int displayId, boolean shouldShow) { in setShouldShowSystemDecors() argument 7162 mDisplayWindowSettings.setShouldShowSystemDecorsLocked(displayContent, shouldShow); in setShouldShowSystemDecors() 7192 public void setShouldShowIme(int displayId, boolean shouldShow) { in setShouldShowIme() argument 7210 mDisplayWindowSettings.setShouldShowImeLocked(displayContent, shouldShow); in setShouldShowIme()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ |
D | TooltipManager.kt | 115 if (!shouldShow()) return in <lambda>() 159 private fun shouldShow() = shown < maxTimesShown in <lambda>() method
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
D | RecentsOnboarding.java | 398 if (!shouldShow()) { in show() 440 private boolean shouldShow() { in shouldShow() method in RecentsOnboarding
|
/frameworks/base/core/java/com/android/internal/content/ |
D | FileSystemProvider.java | 418 return queryChildDocuments(parentDocumentId, projection, sortOrder, this::shouldShow); in queryChildDocuments() 655 private boolean shouldShow(@NonNull File file) { in shouldShow() method
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | ScreenDecorations.java | 882 void setShowProtection(boolean shouldShow) { in setShowProtection() argument 883 if (mShowProtection == shouldShow) { in setShowProtection() 887 mShowProtection = shouldShow; in setShowProtection()
|
/frameworks/base/core/java/android/widget/ |
D | Editor.java | 4825 private boolean shouldShow() { in shouldShow() method in Editor.HandleView 4936 if (shouldShow()) { in updatePosition() 5187 final boolean shouldShow = checkForTransforms() /*check not rotated and compute scale*/ in updateMagnifier() 5190 if (shouldShow) { in updateMagnifier()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayout.java | 4989 boolean shouldShow = !mAmbientState.isFullyHidden() || !onKeyguard(); 4990 setVisibility(shouldShow ? View.VISIBLE : View.INVISIBLE);
|
/frameworks/base/config/ |
D | boot-image-profile.txt | 25598 HSPLandroid/widget/Editor$HandleView;->shouldShow()Z
|