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

1 2

  /external/chromium/chrome/browser/notifications/
notification.cc 5 #include "chrome/browser/notifications/notification.h"
7 Notification::Notification(const GURL& origin_url,
19 Notification::Notification(const Notification& notification)
20 : origin_url_(notification.origin_url()),
21 content_url_(notification.content_url()),
22 display_source_(notification.display_source())
    [all...]
notification.h 17 // Representation of an notification to be shown to the user. All
20 class Notification {
22 Notification(const GURL& origin_url,
27 Notification(const Notification& notification);
28 ~Notification();
29 Notification& operator=(const Notification& notification);
    [all...]
  /external/webkit/Source/WebCore/notifications/
Notification.cpp 36 #include "Notification.h"
49 Notification::Notification(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider)
69 Notification::Notification(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider)
88 Notification::~Notification()
96 PassRefPtr<Notification> Notification::create(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider)
98 return adoptRef(new Notification(url, context, ec, provider))
    [all...]
Notification.h 61 class Notification : public RefCounted<Notification>, public ActiveDOMObject, public ThreadableLoaderClient, public EventTarget {
64 static PassRefPtr<Notification> create(const KURL& url, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider);
65 static PassRefPtr<Notification> create(const NotificationContents& contents, ScriptExecutionContext* context, ExceptionCode& ec, PassRefPtr<NotificationCenter> provider);
67 virtual ~Notification();
89 using RefCounted<Notification>::ref;
90 using RefCounted<Notification>::deref;
94 virtual Notification* toNotification() { return this; }
115 Notification(const KURL&, ScriptExecutionContext*, ExceptionCode&, PassRefPtr<NotificationCenter>);
116 Notification(const NotificationContents&, ScriptExecutionContext*, ExceptionCode&, PassRefPtr<NotificationCente (…)
    [all...]
  /external/chromium/net/tools/flip_server/
acceptor_thread.h 28 class Notification {
30 explicit Notification(bool value) : value_(value) {}
88 Notification quitting_;
  /external/webkit/Source/WebKit/chromium/src/
WebNotification.cpp 36 #include "Notification.h"
49 class WebNotificationPrivate : public Notification {
144 WebNotification::WebNotification(const WTF::PassRefPtr<Notification>& notification)
145 : m_private(static_cast<WebNotificationPrivate*>(notification.releaseRef()))
149 WebNotification& WebNotification::operator=(const WTF::PassRefPtr<Notification>& notification)
151 assign(static_cast<WebNotificationPrivate*>(notification.releaseRef()));
155 WebNotification::operator WTF::PassRefPtr<Notification>() const
157 return WTF::PassRefPtr<Notification>(const_cast<WebNotificationPrivate*>(m_private))
    [all...]
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 21 import android.app.Notification;
316 // create the notification to send
318 final Notification notification = new Notification(); local
319 notification.icon = android.R.drawable.stat_notify_call_mute;
320 notification.contentIntent = PendingIntent.getActivity(getActivity(), 0, new Intent(),
322 notification.tickerText = message;
323 notification.setLatestEventInfo(getActivity(), "", "", notification.contentIntent)
    [all...]
  /hardware/libhardware/tests/camera2/
camera2_utils.h 131 struct Notification {
132 Notification(int32_t type, int32_t e1, int32_t e2, int32_t e3):
145 List<Notification> mNotifications;
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundation.h 54 class Notification {
74 Notification()
81 Notification(Type type, double time)
88 Notification(Type type, bool finished)
106 void scheduleMainThreadNotification(Notification);
107 void scheduleMainThreadNotification(Notification::Type, double time = 0);
108 void scheduleMainThreadNotification(Notification::Type, bool completed);
242 Vector<Notification> m_queuedNotifications;
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /frameworks/base/core/java/android/app/
Notification.java 44 * A class that represents how a persistent notification is to be presented to
47 * <p>The {@link Notification.Builder Notification.Builder} has been added to make it
57 public class Notification implements Parcelable
59 private static final String TAG = "Notification";
67 * Use the default notification sound. This will ignore any given
77 * Use the default notification vibrate. This will ignore any given
87 * Use the default notification lights. This will ignore the
97 * A timestamp related to this notification, in milliseconds since the epoch.
109 * <li>Notification of a new chat message should be stamped when the message was received.</li
    [all...]
  /frameworks/base/services/java/com/android/server/
NotificationManagerService.java 30 import android.app.Notification;
64 import android.service.notification.INotificationListener;
65 import android.service.notification.NotificationListenerService;
66 import android.service.notification.StatusBarNotification;
122 private static final int SCORE_DISPLAY_THRESHOLD = Notification.PRIORITY_MIN * NOTIFICATION_PRIORITY_MULTIPLIER;
127 Notification.PRIORITY_LOW * NOTIFICATION_PRIORITY_MULTIPLIER;
160 // for enabling and disabling notification pulse behavior
189 // Notification control database. For now just contains disabled packages.
195 private static final String TAG_BODY = "notification-policy";
284 sb.append(" notification");
926 final Notification notification = sbn.getNotification(); local
    [all...]
  /external/ceres-solver/internal/ceres/gtest/
gtest.h     [all...]
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/10/
android.jar 

Completed in 510 milliseconds

1 2