Searched refs:notification (Results 1 - 25 of 199) sorted by relevance

12345678

/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
/external/chromium/chrome/browser/notifications/
H A Dnotification.cc5 #include "chrome/browser/notifications/notification.h"
19 Notification::Notification(const Notification& notification) argument
20 : origin_url_(notification.origin_url()),
21 content_url_(notification.content_url()),
22 display_source_(notification.display_source()),
23 replace_id_(notification.replace_id()),
24 delegate_(notification.delegate()) {
29 Notification& Notification::operator=(const Notification& notification) { argument
30 origin_url_ = notification.origin_url();
31 content_url_ = notification
[all...]
H A Dnotification_ui_manager.cc14 #include "chrome/browser/notifications/notification.h"
25 // A class which represents a notification waiting to be shown.
28 QueuedNotification(const Notification& notification, Profile* profile) argument
29 : notification_(notification),
33 const Notification& notification() const { return notification_; } function in class:QueuedNotification
41 // The notification to be shown.
93 void NotificationUIManager::Add(const Notification& notification, argument
95 if (TryReplacement(notification)) {
99 VLOG(1) << "Added notification. URL: "
100 << notification
180 TryReplacement(const Notification& notification) argument
[all...]
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DNotificationPresenterClientQt.cpp92 Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationForWrapper(this); local
93 if (notification)
94 return notification->contents().title();
102 Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationForWrapper(this); local
103 if (notification)
104 return notification->contents().body();
113 Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationForWrapper(this); local
114 if (notification) {
115 if (notification->iconData())
116 iconData = QByteArray::fromRawData(notification
126 Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationForWrapper(this); local
172 show(Notification* notification) argument
190 displayNotification(Notification* notification, const QByteArray& bytes) argument
240 cancel(Notification* notification) argument
258 Notification* notification = notificationForWrapper(wrapper); local
265 Notification* notification = notificationForWrapper(wrapper); local
279 Notification* notification = 0; local
306 notificationObjectDestroyed(Notification* notification) argument
383 sendEvent(Notification* notification, const AtomicString& eventName) argument
389 removeReplacedNotificationFromQueue(Notification* notification) argument
412 detachNotification(Notification* notification) argument
419 dumpReplacedIdText(Notification* notification) argument
425 dumpShowText(Notification* notification) argument
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DNotificationPresenter.cpp47 static WebString identifierForNotification(const WebNotification& notification) argument
49 if (notification.isHTML())
50 return notification.url().spec().utf16();
51 return notification.title();
56 WebNotification* notification = static_cast<WebNotification*>(context); local
57 notification->dispatchDisplayEvent();
58 delete notification;
74 const WebNotification& notification = m_activeNotifications.find(id)->second; local
75 WebNotification eventTarget(notification);
81 bool NotificationPresenter::show(const WebNotification& notification) argument
114 cancel(const WebNotification& notification) argument
125 objectDestroyed(const WebKit::WebNotification& notification) argument
[all...]
/external/webkit/Tools/DumpRenderTree/win/
H A DDRTDesktopNotificationPresenter.cpp72 /* [in] */ IWebDesktopNotification* notification)
77 if (!notification->isHTML(&html) && html) {
78 notification->contentsURL(&url);
81 notification->iconURL(&url);
82 notification->title(&title);
83 notification->text(&text);
90 // In this stub implementation, the notification is displayed immediately;
92 notification->notifyDisplay();
98 /* [in] */ IWebDesktopNotification* notification)
102 notification
71 showDesktopNotification( IWebDesktopNotification* notification) argument
97 cancelDesktopNotification( IWebDesktopNotification* notification) argument
114 notificationDestroyed( IWebDesktopNotification* notification) argument
[all...]
H A DDRTDesktopNotificationPresenter.h47 /* [in] */ IWebDesktopNotification* notification);
50 /* [in] */ IWebDesktopNotification* notification);
53 /* [in] */ IWebDesktopNotification* notification);
/external/chromium/chrome/browser/chromeos/notifications/
H A Dballoon_collection_impl.cc13 #include "chrome/browser/notifications/notification.h"
40 void BalloonCollectionImpl::Add(const Notification& notification, argument
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);
85 const Notification& notification) {
86 Balloon* balloon = FindBalloon(notification);
89 balloon->Update(notification);
52 AddWebUIMessageCallback( const Notification& notification, const std::string& message, MessageCallback* callback) argument
66 AddSystemNotification( const Notification& notification, Profile* profile, bool sticky, bool control) argument
84 UpdateNotification( const Notification& notification) argument
94 UpdateAndShowNotification( const Notification& notification) argument
157 MakeBalloon(const Notification& notification, Profile* profile) argument
[all...]
H A Dballoon_collection_impl.h28 // A balloon collection represents a set of notification balloons being
29 // shown in the chromeos notification panel. Unlike other platforms,
30 // chromeos shows the all notifications in the notification panel, and
48 // Resize notification from webkit.
62 virtual void Add(const Notification& notification,
81 // there is no notification that matches NotificationDelegate::id(),
84 bool AddWebUIMessageCallback(const Notification& notification,
88 // Adds new system notification.
89 // |sticky| is used to indicate that the notification
92 void AddSystemNotification(const Notification& notification,
131 FindBalloon(const Notification& notification) argument
[all...]
/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
H A DRemovalListeners.java46 public void onRemoval(final RemovalNotification<K, V> notification) {
50 listener.onRemoval(notification);
/external/junit/src/org/junit/runner/
H A DRunner.java3 import org.junit.runner.notification.RunNotifier;
6 * A <code>Runner</code> runs tests and notifies a {@link org.junit.runner.notification.RunNotifier}
/external/webkit/Tools/DumpRenderTree/
H A DStorageTrackerDelegate.h34 - (void)originModified:(NSNotification *)notification;
/external/webkit/Source/WebKit/chromium/src/
H A DNotificationPresenterImpl.cpp80 bool NotificationPresenterImpl::show(Notification* notification) argument
82 return m_presenter->show(PassRefPtr<Notification>(notification));
85 void NotificationPresenterImpl::cancel(Notification* notification) argument
87 m_presenter->cancel(PassRefPtr<Notification>(notification));
90 void NotificationPresenterImpl::notificationObjectDestroyed(Notification* notification) argument
92 m_presenter->objectDestroyed(PassRefPtr<Notification>(notification));
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Duserdatahandler01.js98 var notification;
132 notification = notifications[indexN1009E];
133 operation = notification.operation;
135 key = notification.key;
136 data = notification.data;
152 src = notification.src;
154 dst = notification.dst;
H A Duserdatahandler02.js98 var notification;
132 notification = notifications[indexN1009C];
133 operation = notification.operation;
135 key = notification.key;
136 data = notification.data;
152 src = notification.src;
154 dst = notification.dst;
H A Duserdatahandler03.js98 var notification;
147 notification = notifications[indexN100CE];
148 operation = notification.operation;
150 key = notification.key;
151 data = notification.data;
167 src = notification.src;
169 dst = notification.dst;
H A Duserdatahandler04.js98 var notification;
147 notification = notifications[indexN100CD];
148 operation = notification.operation;
150 key = notification.key;
151 data = notification.data;
167 src = notification.src;
169 dst = notification.dst;
/external/guava/guava-tests/test/com/google/common/cache/
H A DTestingRemovalListeners.java55 public void onRemoval(RemovalNotification<K, V> notification) { argument
56 add(notification);
69 public void onRemoval(RemovalNotification<K, V> notification) { argument
71 lastNotification = notification;
96 public void onRemoval(RemovalNotification<K, V> notification) {} argument
H A DNullCacheTest.java51 RemovalNotification<Object, Object> notification = listener.remove();
52 assertSame(key, notification.getKey());
53 assertSame(computed, notification.getValue());
54 assertSame(RemovalCause.SIZE, notification.getCause());
68 RemovalNotification<Object, Object> notification = listener.remove();
69 assertSame(key, notification.getKey());
70 assertSame(computed, notification.getValue());
71 assertSame(RemovalCause.SIZE, notification.getCause());
85 RemovalNotification<Object, Object> notification = listener.remove();
86 assertSame(key, notification
[all...]
/external/webkit/Source/WebKit/mac/WebView/
H A DWebEditingDelegate.h51 - (void)webViewDidBeginEditing:(NSNotification *)notification;
52 - (void)webViewDidChange:(NSNotification *)notification;
53 - (void)webViewDidEndEditing:(NSNotification *)notification;
54 - (void)webViewDidChangeTypingStyle:(NSNotification *)notification;
55 - (void)webViewDidChangeSelection:(NSNotification *)notification;
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8NotificationCenterCustom.cpp56 RefPtr<Notification> notification = notificationCenter->createHTMLNotification(url, ec); local
61 notification->ref();
62 return toV8(notification.get());
71 RefPtr<Notification> notification = notificationCenter->createNotification(toWebCoreString(args[0]), toWebCoreString(args[1]), toWebCoreString(args[2]), ec); local
76 notification->ref();
77 return toV8(notification.get());
/external/junit/src/org/junit/experimental/results/
H A DFailureList.java9 import org.junit.runner.notification.Failure;
10 import org.junit.runner.notification.RunListener;
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebNotificationObserver.idl45 HRESULT onNotify([in] IWebNotification* notification);

Completed in 6246 milliseconds

12345678