Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/robotests/src/com/android/settings/accessibility/
DScreenFlashNotificationColorTest.java36 for (ScreenFlashNotificationColor color : ScreenFlashNotificationColor.values()) { in params()
42 final ScreenFlashNotificationColor mColor;
44 public ScreenFlashNotificationColorTest(ScreenFlashNotificationColor color) { in ScreenFlashNotificationColorTest()
DColorSelectorLayoutTest.java60 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()
DScreenFlashNotificationColorDialogFragmentTest.java29 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()
DFlashNotificationsUtilTest.java142 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()
/packages/apps/Settings/src/com/android/settings/accessibility/
DFlashNotificationsUtil.java47 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()
DScreenFlashNotificationColor.java24 enum ScreenFlashNotificationColor { enum
44 ScreenFlashNotificationColor(@ColorInt int colorInt, @StringRes int stringRes) { in ScreenFlashNotificationColor() method in ScreenFlashNotificationColor