Searched refs:EXTRA_COLORIZED (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/compat/src/androidTest/java/androidx/core/app/
H A DNotificationCompatTest.java63 private static final String EXTRA_COLORIZED = "android.colorized"; field in class:NotificationCompatTest
146 assertTrue(Boolean.TRUE.equals(extras.get(EXTRA_COLORIZED)));
155 assertTrue(Boolean.FALSE.equals(extras.get(EXTRA_COLORIZED)));
164 assertFalse(extras.containsKey(EXTRA_COLORIZED));
/frameworks/base/core/java/android/app/
H A DNotification.java1197 public static final String EXTRA_COLORIZED = "android.colorized"; field in class:Notification
3903 mN.extras.putBoolean(EXTRA_COLORIZED, colorize);
5031 Boolean colorized = (Boolean) mN.extras.get(EXTRA_COLORIZED);
5032 mN.extras.putBoolean(EXTRA_COLORIZED, false);
5039 mN.extras.putBoolean(EXTRA_COLORIZED, colorized);
5041 mN.extras.remove(EXTRA_COLORIZED);
5883 return extras.getBoolean(EXTRA_COLORIZED)
5903 Boolean colorized = (Boolean) extras.get(EXTRA_COLORIZED);
5908 if (extras.getBoolean(EXTRA_COLORIZED) && hasMediaSession()) {

Completed in 131 milliseconds