Home
last modified time | relevance | path

Searched refs:colorInt (Results 1 – 7 of 7) sorted by relevance

/packages/apps/AvatarPicker/src/tests/unit/java/com/android/avatarpicker/tests/unit/data/
DIllustrationsRepositoryTest.kt69 Truth.assertThat(items[0].colorInt).isNull() in <lambda>()
72 Truth.assertThat(items[1].colorInt).isNull() in <lambda>()
75 Truth.assertThat(items[2].colorInt).isNull() in <lambda>()
91 Truth.assertThat(ietms[0].colorInt).isNull() in <lambda>()
94 Truth.assertThat(ietms[1].colorInt).isNull() in <lambda>()
97 Truth.assertThat(ietms[2].colorInt).isNull() in <lambda>()
/packages/apps/Settings/src/com/android/settings/accessibility/
DScreenFlashNotificationColor.java44 ScreenFlashNotificationColor(@ColorInt int colorInt, @StringRes int stringRes) { in ScreenFlashNotificationColor() argument
45 this.mColorInt = colorInt; in ScreenFlashNotificationColor()
47 this.mOpaqueColorInt = colorInt | ALPHA_MASK; in ScreenFlashNotificationColor()
DFlashNotificationsUtil.java90 static ScreenFlashNotificationColor getScreenColor(@ColorInt int colorInt) in getScreenColor() argument
93 colorInt |= ScreenFlashNotificationColor.ALPHA_MASK; in getScreenColor()
95 if (colorInt == color.mOpaqueColorInt) { in getScreenColor()
/packages/apps/Settings/src/com/android/settings/fuelgauge/batteryusage/
DBatteryTipsCardPreference.java141 final int colorInt = getContext().getColor(mButtonColorResourceId); in onBindViewHolder() local
142 mainButton.setBackgroundColor(colorInt); in onBindViewHolder()
143 dismissButton.setTextColor(colorInt); in onBindViewHolder()
/packages/apps/ThemePicker/src/com/android/customization/model/color/
DColorProvider.kt190 for ((i, colorInt) in seedColors.drop(1).take(maxColors - 1).withIndex()) { in buildColorSeeds() constant
191 buildBundle(colorInt, i + 1, false, source, bundles) in buildColorSeeds()
196 colorInt: Int, in buildBundle()
204 val lightColorScheme = ColorScheme(colorInt, /* darkTheme= */ false, style) in buildBundle()
205 val darkColorScheme = ColorScheme(colorInt, /* darkTheme= */ true, style) in buildBundle()
211 if (isDefault) "" else toColorString(colorInt) in buildBundle()
/packages/apps/AvatarPicker/src/main/java/com/android/avatarpicker/data/entity/
DResourceEntity.kt26 @ColorInt val colorInt: Int? = null constant in com.android.avatarpicker.data.entity.ResourceEntity
/packages/apps/AvatarPicker/src/main/java/com/android/avatarpicker/domain/
DUtils.kt44 ResourceViewModel(entityType, drawableId, descriptionId, colorInt) in <lambda>()