HomeSort by relevance Sort by last modified time
    Searched refs:Notification (Results 1 - 25 of 459) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/app/
Notification.aidl 19 parcelable Notification;
  /frameworks/support/v4/honeycomb/android/support/v4/app/
NotificationBuilderWithBuilderAccessor.java 19 import android.app.Notification;
22 * Interface implemented by notification compat builders that support
23 * an accessor for {@link Notification.Builder}. {@link Notification.Builder}
27 public Notification.Builder getBuilder();
NotificationCompatHoneycomb.java 19 import android.app.Notification;
26 static Notification add(Context context, Notification n,
30 Notification.Builder b = new Notification.Builder(context)
38 .setOngoing((n.flags & Notification.FLAG_ONGOING_EVENT) != 0)
39 .setOnlyAlertOnce((n.flags & Notification.FLAG_ONLY_ALERT_ONCE) != 0)
40 .setAutoCancel((n.flags & Notification.FLAG_AUTO_CANCEL) != 0)
48 (n.flags & Notification.FLAG_HIGH_PRIORITY) != 0)
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
NotificationClient.h 42 class Notification;
55 // Requests that a notification be shown.
56 virtual bool show(Notification*) = 0;
58 // Requests that a notification that has already been shown be closed.
59 virtual void close(Notification*) = 0;
61 // Informs the presenter that a Notification object has been destroyed
63 // the notification, but must not attempt to call the event handlers.
64 virtual void notificationObjectDestroyed(Notification*) = 0;
Notification.cpp 32 #include "modules/notifications/Notification.h"
44 Notification* Notification::create(ExecutionContext* context, const String& title, const Dictionary& options)
47 Notification* notification = adoptRefCountedGarbageCollectedWillBeNoop(new Notification(title, context, &client)); local
51 notification->setBody(argument);
53 notification->setTag(argument);
55 notification->setLang(argument);
57 notification->setDir(argument)
    [all...]
  /developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/notifications/
NotificationPreset.java 19 import android.app.Notification;
23 * Base class for notification preset generators.
32 /** Start building a notification with this preset */
33 public abstract Notification buildNotification(Context context);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
NotificationCompatUtils.java 19 import android.app.Notification;
28 CompatUtils.getMethod(Notification.Builder.class, "setColor", int.class);
30 CompatUtils.getMethod(Notification.Builder.class, "setVisibility", int.class);
32 CompatUtils.getMethod(Notification.Builder.class, "setCategory", String.class);
34 CompatUtils.getMethod(Notification.Builder.class, "setPriority", int.class);
36 CompatUtils.getMethod(Notification.Builder.class, "build");
38 CompatUtils.getField(Notification.class, "VISIBILITY_SECRET");
43 CompatUtils.getField(Notification.class, "CATEGORY_RECOMMENDATION");
48 CompatUtils.getField(Notification.class, "PRIORITY_LOW");
58 public static void setColor(final Notification.Builder builder, final int color)
    [all...]
  /external/chromium_org/jingle/notifier/listener/
fake_push_client_observer.h 24 const Notification& notification) OVERRIDE;
27 const Notification& last_incoming_notification() const;
31 Notification last_incoming_notification_;
push_notifications_send_update_task.h 26 buzz::XmppTaskParentInterface* parent, const Notification& notification);
35 const Notification& notification, const buzz::Jid& to_jid_bare);
37 const Notification notification_;
fake_push_client_observer.cc 24 const Notification& notification) {
25 last_incoming_notification_ = notification;
33 const Notification&
  /external/chromium_org/chrome/browser/notifications/
notification.cc 5 #include "chrome/browser/notifications/notification.h"
11 Notification::Notification(const GURL& origin_url,
19 : message_center::Notification(message_center::NOTIFICATION_TYPE_SIMPLE,
37 Notification::Notification(
49 : message_center::Notification(type,
65 Notification::Notification(const GURL& origin_url,
73 : message_center::Notification(message_center::NOTIFICATION_TYPE_SIMPLE
    [all...]
notification_ui_manager.h 15 class Notification;
28 // Adds a notification to be displayed. Virtual for unit test override.
29 virtual void Add(const Notification& notification, Profile* profile) = 0;
31 // Updates an existing notification. If |update_progress_only|, assume
33 virtual bool Update(const Notification& notification, Profile* profile) = 0;
35 // Returns the pointer to a notification if it match the supplied ID, either
37 virtual const Notification* FindById(
44 // Adds the notification_id for each outstanding notification to the se
    [all...]
notification.h 17 #include "ui/message_center/notification.h"
21 // Representation of a notification to be shown to the user.
25 class Notification : public message_center::Notification {
27 // Initializes a notification with text content. On non-ash platforms, this
29 Notification(const GURL& origin_url,
38 // Initializes a notification with text content and an icon image. Currently
40 Notification(const GURL& origin_url,
49 Notification(
62 Notification(const Notification& notification)
    [all...]
  /frameworks/support/v4/api21/android/support/v4/app/
NotificationCompatApi21.java 19 import android.app.Notification;
30 public static final String CATEGORY_CALL = Notification.CATEGORY_CALL;
31 public static final String CATEGORY_MESSAGE = Notification.CATEGORY_MESSAGE;
32 public static final String CATEGORY_EMAIL = Notification.CATEGORY_EMAIL;
33 public static final String CATEGORY_EVENT = Notification.CATEGORY_EVENT;
34 public static final String CATEGORY_PROMO = Notification.CATEGORY_PROMO;
35 public static final String CATEGORY_ALARM = Notification.CATEGORY_ALARM;
36 public static final String CATEGORY_PROGRESS = Notification.CATEGORY_PROGRESS;
37 public static final String CATEGORY_SOCIAL = Notification.CATEGORY_SOCIAL;
38 public static final String CATEGORY_ERROR = Notification.CATEGORY_ERROR
    [all...]
  /developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/notifications/
PriorityPresets.java 19 import android.app.Notification;
23 * Collection of notification priority presets.
27 R.string.default_priority, Notification.PRIORITY_DEFAULT);
30 new SimplePriorityPreset(R.string.min_priority, Notification.PRIORITY_MIN),
31 new SimplePriorityPreset(R.string.low_priority, Notification.PRIORITY_LOW),
33 new SimplePriorityPreset(R.string.high_priority, Notification.PRIORITY_HIGH),
34 new SimplePriorityPreset(R.string.max_priority, Notification.PRIORITY_MAX)
38 * Simple notification priority preset that sets a priority using
  /development/samples/wearable/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
PriorityPresets.java 19 import android.app.Notification;
23 * Collection of notification priority presets.
27 R.string.default_priority, Notification.PRIORITY_DEFAULT);
30 new SimplePriorityPreset(R.string.min_priority, Notification.PRIORITY_MIN),
31 new SimplePriorityPreset(R.string.low_priority, Notification.PRIORITY_LOW),
33 new SimplePriorityPreset(R.string.high_priority, Notification.PRIORITY_HIGH),
34 new SimplePriorityPreset(R.string.max_priority, Notification.PRIORITY_MAX)
38 * Simple notification priority preset that sets a priority using
  /frameworks/support/v4/gingerbread/android/support/v4/app/
NotificationCompatGingerbread.java 19 import android.app.Notification;
24 public static Notification add(Notification notification, Context context,
27 notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
28 notification.fullScreenIntent = fullScreenIntent;
29 return notification;
  /frameworks/support/v4/java/android/support/v4/app/
INotificationSideChannel.aidl 19 import android.app.Notification;
29 * Send an ambient notification to the service.
31 void notify(String packageName, int id, String tag, in Notification notification);
34 * Cancel an already-notified notification.
  /frameworks/support/v4/ics/android/support/v4/app/
NotificationCompatIceCreamSandwich.java 19 import android.app.Notification;
26 static Notification add(Context context, Notification n,
31 Notification.Builder b = new Notification.Builder(context)
39 .setOngoing((n.flags & Notification.FLAG_ONGOING_EVENT) != 0)
40 .setOnlyAlertOnce((n.flags & Notification.FLAG_ONLY_ALERT_ONCE) != 0)
41 .setAutoCancel((n.flags & Notification.FLAG_AUTO_CANCEL) != 0)
49 (n.flags & Notification.FLAG_HIGH_PRIORITY) != 0)
  /development/samples/wearable/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
NotificationPreset.java 19 import android.app.Notification;
23 * Base class for notification preset generators.
32 /** Start building a notification with this preset */
33 public abstract Notification buildNotification(Context context);
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationManagerInternal.java 17 package com.android.server.notification;
19 import android.app.Notification;
23 String tag, int id, Notification notification, int[] idReceived, int userId);
  /developers/samples/android/wearable/wear/FindMyPhone/Wearable/src/main/java/com/example/android/findphone/
DisconnectListenerService.java 19 import android.app.Notification;
35 // Create a "forgot phone" notification when phone connection is broken.
36 Notification.Builder notificationBuilder = new Notification.Builder(this)
42 .setPriority(Notification.PRIORITY_MAX);
43 Notification card = notificationBuilder.build();
50 // Remove the "forgot phone" notification when connection is restored.
  /development/samples/wearable/FindMyPhone/Wearable/src/main/java/com/example/android/wearable/findphone/
DisconnectListenerService.java 19 import android.app.Notification;
35 // Create a "forgot phone" notification when phone connection is broken.
36 Notification.Builder notificationBuilder = new Notification.Builder(this)
42 .setPriority(Notification.PRIORITY_MAX);
43 Notification card = notificationBuilder.build();
50 // Remove the "forgot phone" notification when connection is restored.
  /external/chromium_org/ui/message_center/
notification.cc 5 #include "ui/message_center/notification.h"
51 Notification::Notification(NotificationType type,
73 Notification::Notification(const Notification& other)
87 Notification& Notification::operator=(const Notification& other) {
104 Notification::~Notification() {
    [all...]
  /external/chromium_org/ui/message_center/views/
notification_view.h 26 // View that displays all current types of notification (web, basic, image, and
27 // list). Future notification types may be handled by other classes, in which
36 // notification type. A notification is top level if it needs to be rendered
41 const Notification& notification,
56 const Notification& notification) OVERRIDE;
71 const Notification& notification);
    [all...]

Completed in 479 milliseconds

1 2 3 4 5 6 7 8 91011>>