Home
last modified time | relevance | path

Searched refs:getComplications (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/dreams/
H A DDreamOverlayStateControllerTest.java107 final Collection<Complication> complications = stateController.getComplications(); in testCallback()
117 assertTrue(stateController.getComplications().isEmpty()); in testCallback()
169 final Collection<Complication> complications = stateController.getComplications(); in testComplicationFilteringWhenShouldShowComplications()
179 final Collection<Complication> complications = stateController.getComplications(); in testComplicationFilteringWhenShouldShowComplications()
214 final Collection<Complication> complications = stateController.getComplications(); in testComplicationFilteringWhenShouldHideComplications()
225 final Collection<Complication> complications = stateController.getComplications(); in testComplicationFilteringWhenShouldHideComplications()
237 assertThat(stateController.getComplications(true).contains(complication)) in testComplicationWithNoTypeNotFiltered()
249 assertThat(stateController.getComplications().contains(complication)) in testComplicationsNotShownForLowLight()
255 assertThat(stateController.getComplications()).isEmpty(); in testComplicationsNotShownForLowLight()
368 final Collection<Complication> complications = stateController.getComplications(); in testShouldShowComplicationsSetToFalse_stillShowsHomeControls_featureEnabled()
[all …]
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/complication/
H A DComplicationCollectionLiveData.java42 setValue(mDreamOverlayStateController.getComplications());
47 setValue(mDreamOverlayStateController.getComplications());
62 setValue(mDreamOverlayStateController.getComplications()); in onActive()
H A DComplicationCollectionViewModel.java60 public LiveData<Collection<ComplicationViewModel>> getComplications() { in getComplications() method in ComplicationCollectionViewModel
H A DComplicationHostViewController.java86 mComplicationCollectionViewModel.getComplications().observe(mLifecycleOwner, in onInit()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/
H A DDreamOverlayStateController.java171 public Collection<Complication> getComplications() { in getComplications() method in DreamOverlayStateController
172 return getComplications(true); in getComplications()
178 public Collection<Complication> getComplications(boolean filterByAvailability) { in getComplications() method in DreamOverlayStateController
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/complication/
H A DComplicationHostViewControllerTest.java107 when(mViewModel.getComplications()).thenReturn(mComplicationViewModelLiveData); in setup()