Home
last modified time | relevance | path

Searched refs:showTransient (Results 1 – 20 of 20) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/data/repository/
DStatusBarModeRepositoryImplTest.kt96 commandQueueCallback.showTransient( in isTransientShown_commandQueueShow_wrongDisplayId_notUpdated()
107 commandQueueCallback.showTransient( in isTransientShown_commandQueueShow_notStatusBarType_notUpdated()
118 commandQueueCallback.showTransient( in isTransientShown_commandQueueShow_true()
129 commandQueueCallback.showTransient( in isTransientShown_commandQueueShow_statusBarAndOtherTypes_true()
141 commandQueueCallback.showTransient( in isTransientShown_commandQueueAbort_wrongDisplayId_notUpdated()
158 commandQueueCallback.showTransient( in isTransientShown_commandQueueAbort_notStatusBarType_notUpdated()
175 commandQueueCallback.showTransient( in isTransientShown_commandQueueAbort_false()
190 commandQueueCallback.showTransient( in isTransientShown_commandQueueAbort_statusBarAndOtherTypes_false()
207 underTest.showTransient() in isTransientShown_showTransient_true()
215 commandQueueCallback.showTransient( in isTransientShown_clearTransient_false()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/data/repository/
DStatusBarModePerDisplayRepository.kt98 fun showTransient() in <lambda>() method
121 override fun showTransient( in showTransient() method
280 override fun showTransient() { in showTransient() method
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/data/repository/
DFakeStatusBarModeRepository.kt51 override fun showTransient() { in showTransient() method in com.android.systemui.statusbar.data.repository.FakeStatusBarModePerDisplayRepository
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DCommandQueueTest.java164 mCommandQueue.showTransient(DEFAULT_DISPLAY, types, true /* isGestureOnSystemBar */); in testShowTransient()
166 verify(mCallbacks).showTransient(eq(DEFAULT_DISPLAY), eq(types), eq(true)); in testShowTransient()
172 mCommandQueue.showTransient(SECONDARY_DISPLAY, types, true /* isGestureOnSystemBar */); in testShowTransientForSecondaryDisplay()
174 verify(mCallbacks).showTransient(eq(SECONDARY_DISPLAY), eq(types), eq(true)); in testShowTransientForSecondaryDisplay()
DKeyguardIndicationControllerBaseTest.java326 verify(mRotateTextViewController, never()).showTransient(anyString()); in verifyNoMessage()
DKeyguardIndicationControllerTest.java1569 verify(mRotateTextViewController, never()).showTransient(anyString()); in verifyHideIndication()
1578 verify(mRotateTextViewController).showTransient(eq(message)); in verifyTransientMessage()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DInsetsPolicyTest.java278 policy.showTransient(navigationBars() | statusBars(), true /* isGestureOnSystemBar */); in testShowTransientBars_bothCanBeTransient_appGetsBothFakeControls()
303 policy.showTransient(navigationBars() | statusBars(), in testShowTransientBars_statusBarCanBeTransient_appGetsStatusBarFakeControl()
338 policy.showTransient(navigationBars() | statusBars(), in testAbortTransientBars_bothCanBeAborted_appGetsBothRealControls()
385 policy.showTransient(navigationBars() | statusBars(), in testShowTransientBars_abortsWhenControlTargetChanges()
DInsetsStateControllerTest.java383 mDisplayContent.getInsetsPolicy().showTransient(statusBars(), in testTransientVisibilityOfFixedRotationState()
/frameworks/base/services/core/java/com/android/server/statusbar/
DStatusBarManagerInternal.java184 void showTransient(int displayId, @InsetsType int types, boolean isGestureOnSystemBar); in showTransient() method
DStatusBarManagerService.java718 public void showTransient(int displayId, @InsetsType int types,
720 getUiState(displayId).showTransient(types);
724 bar.showTransient(displayId, types, isGestureOnSystemBar);
1442 private void showTransient(@InsetsType int types) { in showTransient() method in StatusBarManagerService.UiState
/frameworks/base/core/java/com/android/internal/statusbar/
DIStatusBar.aidl247 void showTransient(int displayId, int types, boolean isGestureOnSystemBar); in showTransient() method
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardIndicationRotateTextViewController.java222 public void showTransient(CharSequence newIndication) { in showTransient() method in KeyguardIndicationRotateTextViewController
/frameworks/base/services/core/java/com/android/server/wm/
DInsetsPolicy.java151 void showTransient(@InsetsType int types, boolean isGestureOnSystemBar) { in showTransient() method in InsetsPolicy
170 statusBarManagerInternal.showTransient(mDisplayContent.getDisplayId(), in showTransient()
DDisplayPolicy.java2291 mDisplayContent.getInsetsPolicy().showTransient(SHOW_TYPES_FOR_SWIPE,
2558 mDisplayContent.getInsetsPolicy().showTransient(SHOW_TYPES_FOR_PANIC,
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/
DKeyguardIndicationRotateTextViewControllerTest.java291 mController.showTransient(TEST_MESSAGE_2); in testTransientIndication()
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
DTaskbarDelegate.java403 public void showTransient(int displayId, @InsetsType int types, boolean isGestureOnSystemBar) { in showTransient() method in TaskbarDelegate
DNavigationBar.java1192 public void showTransient(int displayId, @InsetsType int types, boolean isGestureOnSystemBar) { in showTransient() method in NavigationBar
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DCommandQueue.java420 default void showTransient(int displayId, @InsetsType int types, in showTransient() method
1253 public void showTransient(int displayId, int types, boolean isGestureOnSystemBar) { in showTransient() method in CommandQueue
1817 mCallbacks.get(i).showTransient(displayId, types, isGestureOnSystemBar); in handleMessage()
DKeyguardIndicationController.java693 mRotateTextViewController.showTransient(mTransientIndication); in updateTransient()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DCentralSurfacesImpl.java911 mStatusBarModeRepository.getDefaultDisplay().showTransient(); in start()