Searched defs:notification (Results 1 - 25 of 136) sorted by relevance

123456

/external/chromium_org/third_party/ocmock/OCMock/
H A DOCMNotificationPoster.h10 NSNotification *notification; variable
/external/junit/src/org/junit/runner/notification/
H A Dpackage-info.java6 package org.junit.runner.notification
H A DStoppedByUserException.java1 package org.junit.runner.notification;
7 * @see org.junit.runner.notification.RunNotifier
H A DFailure.java1 package org.junit.runner.notification;
H A DRunListener.java1 package org.junit.runner.notification;
/external/chromium_org/jingle/notifier/listener/
H A Dnotification_defines_unittest.cc16 // 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());
H A Dpush_notifications_send_update_task_unittest.cc34 Notification notification; local
35 notification.channel = "test_channel";
36 notification.data = "test_data";
39 base::Base64Encode(notification.data, &base64_data);
43 notification, to_jid_bare_));
53 to_jid_bare_.Str().c_str(), notification.channel.c_str(),
H A Dfake_push_client_observer.cc24 const Notification& notification) {
25 last_incoming_notification_ = notification;
23 OnIncomingNotification( const Notification& notification) argument
H A Dnon_blocking_push_client_unittest.cc94 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
107 push_client_->SendNotification(notification);
112 fake_push_client_->sent_notifications()[0].Equals(notification));
141 const Notification notification = MakeTestNotification(); local
[all...]
H A Dpush_notifications_send_update_task.cc23 buzz::XmppTaskParentInterface* parent, const Notification& notification)
24 : XmppTask(parent), notification_(notification) {}
32 DVLOG(1) << "Sending notification " << notification_.ToString()
41 const Notification& notification,
62 push->AddAttr(kQnChannel, notification.channel);
65 const RecipientList& recipients = notification.recipients;
81 base::Base64Encode(notification.data, &base64_data);
22 PushNotificationsSendUpdateTask( buzz::XmppTaskParentInterface* parent, const Notification& notification) argument
40 MakeUpdateMessage( const Notification& notification, const buzz::Jid& to_jid_bare) argument
H A Dpush_notifications_listen_task.cc47 // the notification to the buzz server.
66 Notification notification; local
67 notification.channel = push_element->Attr(kQnChannel);
71 if (!base::Base64Decode(base64_encoded_data, &notification.data)) {
78 DVLOG(1) << "Received notification " << notification.ToString();
79 delegate_->OnNotificationReceived(notification);
/external/guava/guava/src/com/google/common/cache/
H A DRemovalListener.java22 * 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); argument
/external/chromium_org/chrome/browser/ui/cocoa/apps/
H A Dquit_with_apps_controller_mac_interactive_uitest.cc49 // Test that quitting while apps are open shows a notification instead.
53 const Notification* notification; local
59 notification = g_browser_process->notification_ui_manager()->FindById(
61 EXPECT_EQ(NULL, notification);
72 // On the first quit, show notification.
75 notification = g_browser_process->notification_ui_manager()->FindById(
77 ASSERT_TRUE(notification);
79 // If notification was dismissed by click, show again on next quit.
80 notification->delegate()->Click();
84 notification
[all...]
/external/chromium_org/chrome/browser/ui/panels/
H A Dtest_panel_notification_observer.cc13 int notification,
17 registrar_.Add(this, notification, source);
12 TestPanelNotificationObserver( int notification, const content::NotificationSource& source) argument
/external/chromium_org/ash/system/chromeos/supervised/
H A Dtray_supervised_user_unittest.cc12 #include "ui/message_center/notification.h"
72 message_center::Notification* notification = GetPopup(); local
73 ASSERT_NE(static_cast<message_center::Notification*>(NULL), notification); local
75 notification->rich_notification_data().priority);
80 // the notification and should not cause crashes.
81 message_center::Notification* notification = GetPopup(); local
82 ASSERT_NE(static_cast<message_center::Notification*>(NULL), notification); local
84 notification->rich_notification_data().priority);
/external/chromium_org/content/renderer/
H A Dactive_notification_tracker.cc20 const WebNotification& notification, int& id) {
21 ReverseTable::iterator iter = reverse_notification_table_.find(notification);
29 int id, WebNotification* notification) {
34 *notification = *lookup;
44 WebNotification* notification = new WebNotification(proxy); local
45 int id = notification_table_.Add(notification);
52 // We want to free the notification after removing it from the table.
53 scoped_ptr<WebNotification> notification(notification_table_.Lookup(id));
55 DCHECK(notification.get());
56 if (notification)
19 GetId( const WebNotification& notification, int& id) argument
28 GetNotification( int id, WebNotification* notification) argument
[all...]
/external/chromium_org/content/shell/renderer/test_runner/
H A Dnotification_presenter.cc30 WebNotification* notification = static_cast<WebNotification*>(context); local
31 notification->dispatchDisplayEvent();
33 delete notification;
47 const WebNotification& notification = iter->second; local
49 WebNotification event_target(notification);
57 const WebNotification& notification = active_notifications_.begin()->second; local
58 cancel(notification);
64 bool NotificationPresenter::show(const WebNotification& notification) { argument
65 if (!notification.replaceId().isEmpty()) {
66 std::string replaceId(notification
109 cancel(const WebNotification& notification) argument
121 objectDestroyed( const WebNotification& notification) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DNotificationPresenterImpl.cpp56 bool NotificationPresenterImpl::show(Notification* notification) argument
58 return m_presenter->show(notification);
61 void NotificationPresenterImpl::close(Notification* notification) argument
63 m_presenter->close(notification);
66 m_presenter->cancel(notification);
69 void NotificationPresenterImpl::notificationObjectDestroyed(Notification* notification) argument
71 m_presenter->objectDestroyed(notification);
/external/lldb/source/Core/
H A DInputReaderEZ.cpp18 lldb::InputReaderAction notification,
28 switch (notification)
16 Callback_Impl(void *baton, InputReader &reader, lldb::InputReaderAction notification, const char *bytes, size_t bytes_len) argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowNotificationManager.java21 public void notify(int id, Notification notification) argument
23 notify(null, id, notification);
27 public void notify(String tag, int id, Notification notification) { argument
31 notifications.put(id, notification);
/external/chromium_org/ash/system/chromeos/session/
H A Dtray_session_length_limit_unittest.cc14 #include "ui/message_center/notification.h"
82 message_center::Notification* notification = GetNotification(); local
83 EXPECT_TRUE(notification);
84 EXPECT_EQ(message_center::SYSTEM_PRIORITY, notification->priority());
85 base::string16 first_content = notification->message();
87 EXPECT_TRUE(notification->rich_notification_data().
92 notification = GetNotification();
93 EXPECT_TRUE(notification);
94 EXPECT_EQ(message_center::SYSTEM_PRIORITY, notification->priority());
96 EXPECT_NE(first_content, notification
125 message_center::Notification* notification; local
[all...]
/external/chromium_org/chrome/browser/notifications/
H A Dgoogle_now_notification_stats_collector.cc12 #include "chrome/browser/notifications/notification.h"
15 #include "ui/message_center/notification.h"
54 const Notification* const notification = local
56 if (notification) {
58 ((notification->notifier_id().type ==
60 (notification->notifier_id().id ==
H A Dnotification.cc5 #include "chrome/browser/notifications/notification.h"
57 Notification::Notification(const Notification& notification) argument
58 : message_center::Notification(notification),
59 origin_url_(notification.origin_url()),
60 icon_url_(notification.icon_url()),
61 button_one_icon_url_(notification.button_one_icon_url()),
62 button_two_icon_url_(notification.button_two_icon_url()),
63 image_url_(notification.image_url()),
64 replace_id_(notification.replace_id()),
65 delegate_(notification
69 operator =(const Notification& notification) argument
[all...]
H A Dnotification_test_util.h11 #include "chrome/browser/notifications/notification.h"
19 // the notification events are not important.
42 // notification events needs to be verified.
55 Logger::log("notification displayed\n");
58 Logger::log("notification error\n");
61 Logger::log("notification clicked\n");
64 Logger::log("notification button clicked\n");
68 Logger::log("notification closed by user\n");
70 Logger::log("notification closed by script\n");
90 // Adds a notification t
121 const Notification& notification() const { return notification_; } function in class:StubNotificationUIManager
[all...]
H A Dnotification_ui_manager_android.cc20 void NotificationUIManagerAndroid::Add(const Notification& notification, argument
26 bool NotificationUIManagerAndroid::Update(const Notification& notification, argument

Completed in 360 milliseconds

123456