Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/icon/ui/viewmodel/
DNotificationIconContainerStatusBarViewModelTest.kt243 val iconColorsLookup by collectLastValue(underTest.iconColors) in iconColors_testsDarkBounds()
246 val iconColors = iconColorsLookup?.iconColors(Rect()) in iconColors_testsDarkBounds() constant
247 assertThat(iconColors).isNotNull() in iconColors_testsDarkBounds()
248 iconColors!! in iconColors_testsDarkBounds()
250 assertThat(iconColors.tint).isEqualTo(0xAABBCC) in iconColors_testsDarkBounds()
252 val staticDrawableColor = iconColors.staticDrawableColor(Rect()) in iconColors_testsDarkBounds()
266 val iconColorsLookup by collectLastValue(underTest.iconColors) in iconColors_staticDrawableColor_notInDarkTintArea()
267 val iconColors = iconColorsLookup?.iconColors(Rect(1, 1, 4, 4)) in iconColors_staticDrawableColor_notInDarkTintArea() constant
268 val staticDrawableColor = iconColors?.staticDrawableColor(Rect(6, 6, 7, 7)) in iconColors_staticDrawableColor_notInDarkTintArea()
281 val iconColorsLookup by collectLastValue(underTest.iconColors) in iconColors_notInDarkTintArea()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/icon/ui/viewbinder/
DStatusBarIconViewBinder.kt58 iconColors: Flow<NotificationIconColors>, in <lambda>()
61 iconColors.collectTracingEach("SBIV#bindIconColors") { colors -> in <lambda>()
DNotificationIconContainerViewBinder.kt72 val iconColors: StateFlow<NotificationIconColors> = in <lambda>() constant
73 viewModel.iconColors.mapNotNull { it.iconColors(view.viewBounds) }.stateIn(this) in <lambda>()
84 iconColors, in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/icon/ui/viewmodel/
DNotificationIconColors.kt25 fun iconColors(viewBounds: Rect): NotificationIconColors? in interface() method
DNotificationIconContainerStatusBarViewModel.kt72 val iconColors: Flow<NotificationIconColorLookup> = in <lambda>() constant
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/
DHandleMenu.java208 final ColorStateList[] iconColors = getWindowingIconColor(); in setupWindowingPill() local
209 final ColorStateList inActiveColorStateList = iconColors[0]; in setupWindowingPill()
210 final ColorStateList activeColorStateList = iconColors[1]; in setupWindowingPill()