HomeSort by relevance Sort by last modified time
    Searched defs:Notification (Results 1 - 12 of 12) sorted by null

  /external/webkit/WebCore/notifications/
Notification.cpp 36 #include "Notification.h"
45 Notification::Notification(const String& url, ScriptExecutionContext* context, ExceptionCode& ec, NotificationPresenter* provider)
65 Notification::Notification(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, NotificationPresenter* provider)
86 Notification::~Notification()
91 void Notification::show()
98 void Notification::cancel()
104 EventTargetData* Notification::eventTargetData(
    [all...]
Notification.h 56 class Notification : public RefCounted<Notification>, public ActiveDOMObject, public EventTarget {
58 static Notification* create(const String& url, ScriptExecutionContext* context, ExceptionCode& ec, NotificationPresenter* provider) { return new Notification(url, context, ec, provider); }
59 static Notification* create(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, NotificationPresenter* provider) { return new Notification(contents, context, ec, provider); }
61 virtual ~Notification();
74 using RefCounted<Notification>::ref;
75 using RefCounted<Notification>::deref;
79 virtual Notification* toNotification() { return this;
    [all...]
  /external/webkit/WebKit/chromium/src/
WebNotification.cpp 36 #include "Notification.h"
47 class WebNotificationPrivate : public Notification {
117 WebNotification::WebNotification(const WTF::PassRefPtr<Notification>& notification)
118 : m_private(static_cast<WebNotificationPrivate*>(notification.releaseRef()))
122 WebNotification& WebNotification::operator=(const WTF::PassRefPtr<Notification>& notification)
124 assign(static_cast<WebNotificationPrivate*>(notification.releaseRef()));
128 WebNotification::operator WTF::PassRefPtr<Notification>() const
130 return WTF::PassRefPtr<Notification>(const_cast<WebNotificationPrivate*>(m_private))
    [all...]
  /frameworks/base/core/java/android/app/
Notification.java 34 * A class that represents how a persistent notification is to be presented to
41 public class Notification implements Parcelable
49 * Use the default notification sound. This will ignore any given
57 * Use the default notification vibrate. This will ignore any given
66 * Use the default notification lights. This will ignore the
75 * The timestamp for the notification. The icons and expanded views
86 * The number of events that this notification represents. For example, in a new mail
87 * notification, this could be the number of unread messages. This number is superimposed over
112 * An intent to launch instead of posting the notification to the status bar.
117 * to turn it off and use a normal notification, as this can be extremel
    [all...]
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 25 import android.app.Notification;
335 // create the notification to send
337 Notification notification = new Notification(); local
338 notification.icon = android.R.drawable.stat_notify_call_mute;
339 notification.contentIntent = PendingIntent.getActivity(getActivity(), 0, new Intent(),
341 notification.tickerText = message;
342 notification.setLatestEventInfo(getActivity(), "", "", notification.contentIntent)
    [all...]
  /frameworks/base/services/java/com/android/server/
NotificationManagerService.java 26 import android.app.Notification;
111 // for enabling and disabling notification pulse behavior
115 // This is true if we have received a new notification while the screen is off
122 private Notification mAdbNotification;
176 final Notification notification; field in class:NotificationManagerService.NotificationRecord
180 Notification notification)
187 this.notification = notification;
    [all...]
  /external/chromium/net/tools/flip_server/
flip_in_mem_edsm_server.cc     [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 225 milliseconds