Lines Matching defs:notif

759         public String getCategory(Notification notif) {
760 return NotificationCompatApi21.getCategory(notif);
1583 * Notification notif = new Notification.Builder(mContext)
1652 * Notification notif = new Notification.Builder(mContext)
2186 * Notification notif = new NotificationCompat.Builder(mContext)
2193 * NotificationManagerCompat.from(mContext).notify(0, notif);</pre>
2322 public WearableExtender(Notification notif) {
2323 Bundle extras = getExtras(notif);
2487 * Notification notif = new NotificationCompat.Builder(context)
2925 * @param notif The notification from which to copy options.
2927 public CarExtender(Notification notif) {
2932 Bundle carBundle = getExtras(notif)==null ?
2933 null : getExtras(notif).getBundle(EXTRA_CAR_EXTENDER);
3252 public static Bundle getExtras(Notification notif) {
3253 return IMPL.getExtras(notif);
3260 public static int getActionCount(Notification notif) {
3261 return IMPL.getActionCount(notif);
3267 * @param notif The notification to inspect.
3270 public static Action getAction(Notification notif, int actionIndex) {
3271 return IMPL.getAction(notif, actionIndex);
3277 * @param notif The notification to inspect.
3279 public static String getCategory(Notification notif) {
3280 return IMPL.getCategory(notif);
3289 public static boolean getLocalOnly(Notification notif) {
3290 return IMPL.getLocalOnly(notif);
3297 public static String getGroup(Notification notif) {
3298 return IMPL.getGroup(notif);
3307 public static boolean isGroupSummary(Notification notif) {
3308 return IMPL.isGroupSummary(notif);
3323 public static String getSortKey(Notification notif) {
3324 return IMPL.getSortKey(notif);