Searched refs:ScreenFlashNotificationColor (Results 1 – 6 of 6) sorted by relevance
36 for (ScreenFlashNotificationColor color : ScreenFlashNotificationColor.values()) { in params()42 final ScreenFlashNotificationColor mColor;44 public ScreenFlashNotificationColorTest(ScreenFlashNotificationColor color) { in ScreenFlashNotificationColorTest()
60 mColorSelectorLayout.setCheckedColor(ScreenFlashNotificationColor.AZURE.mColorInt); in setColor_checkColorChanged()62 .isEqualTo(ScreenFlashNotificationColor.AZURE.mColorInt); in setColor_checkColorChanged()73 mColorSelectorLayout.setCheckedColor(ScreenFlashNotificationColor.AZURE.mColorInt); in setSelectedColor_checkColorChanged()75 .isEqualTo(ScreenFlashNotificationColor.AZURE.mColorInt); in setSelectedColor_checkColorChanged()
29 import static com.android.settings.accessibility.ScreenFlashNotificationColor.AZURE;30 import static com.android.settings.accessibility.ScreenFlashNotificationColor.BLUE;31 import static com.android.settings.accessibility.ScreenFlashNotificationColor.CYAN;32 import static com.android.settings.accessibility.ScreenFlashNotificationColor.ROSE;187 private void checkColorButton(ScreenFlashNotificationColor color) { in checkColorButton()
142 assertThat(getScreenColor(0x660080FF)).isEqualTo(ScreenFlashNotificationColor.AZURE); in getScreenColor_azureColor_returnAzure()152 assertThat(getColorDescriptionText(mContext, ScreenFlashNotificationColor.AZURE.mColorInt)) in getColorDescriptionText_azureColor_returnAzureName()153 .isEqualTo(mContext.getString(ScreenFlashNotificationColor.AZURE.mStringRes)); in getColorDescriptionText_azureColor_returnAzureName()
47 static final int DEFAULT_SCREEN_FLASH_COLOR = ScreenFlashNotificationColor.YELLOW.mColorInt;90 static ScreenFlashNotificationColor getScreenColor(@ColorInt int colorInt) in getScreenColor()93 colorInt |= ScreenFlashNotificationColor.ALPHA_MASK; in getScreenColor()94 for (ScreenFlashNotificationColor color : ScreenFlashNotificationColor.values()) { in getScreenColor()
24 enum ScreenFlashNotificationColor { enum44 ScreenFlashNotificationColor(@ColorInt int colorInt, @StringRes int stringRes) { in ScreenFlashNotificationColor() method in ScreenFlashNotificationColor