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

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/org/junit/runner/notification/
package-info.java 6 package org.junit.runner.notification
StoppedByUserException.java 1 package org.junit.runner.notification;
7 * @see org.junit.runner.notification.RunNotifier
  /frameworks/base/core/java/android/service/notification/
INotificationListener.aidl 17 package android.service.notification;
19 import android.service.notification.StatusBarNotification;
24 void onNotificationPosted(in StatusBarNotification notification);
25 void onNotificationRemoved(in StatusBarNotification notification);
StatusBarNotification.aidl 17 package android.service.notification;
StatusBarNotification.java 17 package android.service.notification;
19 import android.app.Notification;
25 * Class encapsulating a Notification. Sent by the NotificationManagerService to clients including
26 * the status bar and any {@link android.service.notification.NotificationListenerService}s.
36 private final Notification notification; field in class:StatusBarNotification
44 Notification notification, UserHandle user) {
45 this(pkg, null, id, tag, uid, initialPid, score, notification, user);
50 int initialPid, int score, Notification notification, UserHandle user)
    [all...]
  /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...]
  /external/chromium_org/jingle/notifier/listener/
notification_defines_unittest.cc 16 // Create a notification with binary data in the data field.
21 Notification notification; local
22 notification.data = kNonUtf8Data;
23 EXPECT_EQ("{ channel: \"\", data: \"\\u00FF\" }", notification.ToString());
push_notifications_send_update_task_unittest.cc 34 Notification notification; local
35 notification.channel = "test_channel";
36 notification.data = "test_data";
39 EXPECT_TRUE(base::Base64Encode(notification.data, &base64_data));
43 notification, to_jid_bare_));
53 to_jid_bare_.Str().c_str(), notification.channel.c_str(),
fake_push_client_observer.cc 24 const Notification& notification) {
25 last_incoming_notification_ = notification;
33 const Notification&
non_blocking_push_client_unittest.cc 93 Notification MakeTestNotification() {
94 Notification notification; local
95 notification.channel = "channel";
96 notification.recipients.resize(10);
97 notification.recipients[0].to = "to";
98 notification.recipients[9].user_specific_data = "user_specific_data";
99 notification.data = "data";
100 return notification;
105 const Notification notification = MakeTestNotification() local
141 const Notification notification = MakeTestNotification(); local
    [all...]
push_client_observer.h 25 // disabled, and when a notification is received.
39 // Called when a notification is received. The details of the
40 // notification are in |notification|.
41 virtual void OnIncomingNotification(const Notification& notification) = 0;
  /external/chromium_org/content/renderer/
notification_provider.cc 38 bool NotificationProvider::show(const WebNotification& notification) {
39 int notification_id = manager_.RegisterNotification(notification);
40 if (notification.isHTML())
41 return ShowHTML(notification, notification_id);
43 return ShowText(notification, notification_id);
46 void NotificationProvider::cancel(const WebNotification& notification) {
48 bool id_found = manager_.GetId(notification, id);
49 // Won't be found if the notification has already been closed by the user.
55 const WebNotification& notification) {
57 bool id_found = manager_.GetId(notification, id)
134 WebNotification notification; local
143 WebNotification notification; local
152 WebNotification notification; local
163 WebNotification notification; local
    [all...]
active_notification_tracker.cc 22 const WebNotification& notification, int& id) {
23 ReverseTable::iterator iter = reverse_notification_table_.find(notification);
31 int id, WebNotification* notification) {
36 *notification = *lookup;
46 WebNotification* notification = new WebNotification(proxy); local
47 int id = notification_table_.Add(notification);
54 // We want to free the notification after removing it from the table.
55 scoped_ptr<WebNotification> notification(notification_table_.Lookup(id));
57 DCHECK(notification.get());
58 if (notification)
    [all...]
active_notification_tracker.h 22 // This class manages the set of active Notification objects in either
30 // Methods for tracking active notification objects.
31 int RegisterNotification(const WebKit::WebNotification& notification);
33 bool GetId(const WebKit::WebNotification& notification, int& id);
34 bool GetNotification(int id, WebKit::WebNotification* notification);
  /frameworks/base/core/java/com/android/internal/notification/
NotificationScorer.java 17 package com.android.internal.notification;
19 import android.app.Notification;
25 public int getScore(Notification notification, int score);
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
NotificationPresenter.cpp 51 WebString identifierForNotification(const WebNotification& notification)
53 if (notification.isHTML())
54 return notification.url().spec().utf16();
55 return notification.title();
60 WebNotification* notification = static_cast<WebNotification*>(context); local
61 notification->dispatchDisplayEvent();
62 delete notification;
87 const WebNotification& notification = m_activeNotifications.find(id)->second; local
88 WebNotification eventTarget(notification);
94 bool NotificationPresenter::show(const WebNotification& notification)
    [all...]
  /external/chromium_org/chrome/browser/notifications/
desktop_notification_service_win.cc 9 #include "chrome/browser/notifications/notification.h"
32 const Notification& notification) {
38 if (!notification.is_html()) {
39 display_metro_notification(notification.origin_url().spec().c_str(),
40 notification.content_url().spec().c_str(),
41 notification.title().c_str(),
42 notification.message().c_str(),
43 notification.display_source().c_str(),
44 notification.notification_id().c_str()
    [all...]
notification.cc 5 #include "chrome/browser/notifications/notification.h"
12 Notification::Notification(const GURL& origin_url,
17 : message_center::Notification(message_center::NOTIFICATION_TYPE_SIMPLE,
32 Notification::Notification(const GURL& origin_url,
40 : message_center::Notification(message_center::NOTIFICATION_TYPE_SIMPLE,
59 Notification::Notification(
70 : message_center::Notification(type
    [all...]
message_center_notification_manager.cc 16 #include "chrome/browser/notifications/notification.h"
58 // On Windows, Linux and Mac, the notification manager owns the tray icon and
74 const Notification* MessageCenterNotificationManager::FindById(
76 const Notification* notification = NotificationUIManagerImpl::FindById(id); local
77 if (notification)
78 return notification;
82 return &(iter->second->notification());
110 if ((*iter).second->notification().origin_url() == source &&
127 if ((*curiter).second->notification().origin_url() == source)
535 const Notification& notification = profile_notification->notification(); local
    [all...]
  /external/chromium_org/content/renderer/accessibility/
renderer_accessibility_browsertest.cc 86 AccessibilityHostMsg_NotificationParams notification; local
87 GetLastAccNotification(&notification);
88 return notification.nodes.size();
125 AccessibilityHostMsg_NotificationParams notification; local
126 GetLastAccNotification(&notification);
127 EXPECT_EQ(notification.notification_type,
129 EXPECT_EQ(notification.id, 1);
130 EXPECT_EQ(notification.nodes.size(), 2U);
131 EXPECT_EQ(notification.nodes[0].id, 1);
132 EXPECT_EQ(notification.nodes[0].role
146 AccessibilityHostMsg_NotificationParams notification; local
171 AccessibilityHostMsg_NotificationParams notification; local
183 AccessibilityHostMsg_NotificationParams notification; local
195 AccessibilityHostMsg_NotificationParams notification; local
208 AccessibilityHostMsg_NotificationParams notification; local
221 AccessibilityHostMsg_NotificationParams notification; local
235 AccessibilityHostMsg_NotificationParams notification; local
278 AccessibilityHostMsg_NotificationParams notification; local
412 AccessibilityHostMsg_NotificationParams notification; local
462 AccessibilityHostMsg_NotificationParams notification; local
    [all...]
  /external/chromium/chrome/browser/chromeos/notifications/
balloon_collection_impl.cc 13 #include "chrome/browser/notifications/notification.h"
40 void BalloonCollectionImpl::Add(const Notification& notification,
42 Balloon* new_balloon = MakeBalloon(notification, profile);
53 const Notification& notification,
56 Balloon* balloon = FindBalloon(notification);
67 const Notification& notification,
72 Balloon* new_balloon = new Balloon(notification, profile, this)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
notifications_unittests.js 30 test('Notification', 5, function() {
31 var notification = new ui.notifications.Notification();
32 equal(notification.tagName, 'LI');
33 equal(notification.innerHTML, '<div class="how"></div><div class="what"></div>');
34 equal(notification.index(), 0);
35 notification.setIndex(1);
36 equal(notification.index(), 1);
38 ok(notification.dismiss);
47 var notification;
    [all...]
  /external/mockito/src/org/mockito/internal/runners/util/
FrameworkUsageValidator.java 8 import org.junit.runner.notification.Failure;
9 import org.junit.runner.notification.RunListener;
10 import org.junit.runner.notification.RunNotifier;
  /external/chromium_org/third_party/ocmock/OCMock/
OCMNotificationPoster.h 10 NSNotification *notification; variable
  /external/guava/guava/src/com/google/common/cache/
RemovalListener.java 22 * An object that can receive a notification when an entry is removed from a cache. The removal
23 * resulting in notification could have occured to an entry being manually removed or replaced, or
45 void onRemoval(RemovalNotification<K, V> notification);

Completed in 1950 milliseconds

1 2 3 4 5 6 7 8 91011>>