Home
last modified time | relevance | path

Searched refs:NotificationCompatJellybean (Results 1 – 5 of 5) sorted by relevance

/frameworks/support/v4/java/android/support/v4/app/
DNotificationCompatExtras.java28 public static final String EXTRA_LOCAL_ONLY = NotificationCompatJellybean.EXTRA_LOCAL_ONLY;
35 public static final String EXTRA_GROUP_KEY = NotificationCompatJellybean.EXTRA_GROUP_KEY;
43 NotificationCompatJellybean.EXTRA_GROUP_SUMMARY;
50 public static final String EXTRA_SORT_KEY = NotificationCompatJellybean.EXTRA_SORT_KEY;
58 NotificationCompatJellybean.EXTRA_ACTION_EXTRAS;
67 NotificationCompatJellybean.EXTRA_REMOTE_INPUTS;
DNotificationCompat.java592 NotificationCompatJellybean.Builder builder = new NotificationCompatJellybean.Builder( in build()
605 return NotificationCompatJellybean.getExtras(n); in getExtras()
610 return NotificationCompatJellybean.getActionCount(n); in getActionCount()
615 return (Action) NotificationCompatJellybean.getAction(n, actionIndex, Action.FACTORY, in getAction()
622 return (Action[]) NotificationCompatJellybean.getActionsFromParcelableArrayList( in getActionsFromParcelableArrayList()
629 return NotificationCompatJellybean.getParcelableArrayListForActions(actions); in getParcelableArrayListForActions()
634 return NotificationCompatJellybean.getLocalOnly(n); in getLocalOnly()
639 return NotificationCompatJellybean.getGroup(n); in getGroup()
644 return NotificationCompatJellybean.isGroupSummary(n); in isGroupSummary()
649 return NotificationCompatJellybean.getSortKey(n); in getSortKey()
[all …]
DNotificationManagerCompat.java62 NotificationCompatJellybean.EXTRA_USE_SIDE_CHANNEL;
/frameworks/support/v4/kitkat/android/support/v4/app/
DNotificationCompatKitKat.java80 mExtras.putBoolean(NotificationCompatJellybean.EXTRA_LOCAL_ONLY, true); in Builder()
83 mExtras.putString(NotificationCompatJellybean.EXTRA_GROUP_KEY, groupKey); in Builder()
85 mExtras.putBoolean(NotificationCompatJellybean.EXTRA_GROUP_SUMMARY, true); in Builder()
87 mExtras.putBoolean(NotificationCompatJellybean.EXTRA_USE_SIDE_CHANNEL, true); in Builder()
91 mExtras.putString(NotificationCompatJellybean.EXTRA_SORT_KEY, sortKey); in Builder()
97 mActionExtrasList.add(NotificationCompatJellybean.writeActionAndGetExtras(b, action)); in addAction()
107 SparseArray<Bundle> actionExtrasMap = NotificationCompatJellybean.buildActionExtrasMap( in build()
112 NotificationCompatJellybean.EXTRA_ACTION_EXTRAS, actionExtrasMap); in build()
133 NotificationCompatJellybean.EXTRA_ACTION_EXTRAS); in getAction()
137 return NotificationCompatJellybean.readAction(factory, remoteInputFactory, in getAction()
[all …]
/frameworks/support/v4/jellybean/android/support/v4/app/
DNotificationCompatJellybean.java33 class NotificationCompatJellybean { class