HomeSort by relevance Sort by last modified time
    Searched refs:notification (Results 1 - 25 of 262) 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
  /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_ui_manager.cc 14 #include "chrome/browser/notifications/notification.h"
25 // A class which represents a notification waiting to be shown.
28 QueuedNotification(const Notification& notification, Profile* profile)
29 : notification_(notification),
33 const Notification& notification() const { return notification_; } function in class:QueuedNotification
36 void Replace(const Notification& new_notification) {
41 // The notification to be shown.
42 Notification notification_
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
NotificationPresenterClientQt.cpp 92 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
126 Notification* notification = NotificationPresenterClientQt::notificationPresenter()->notificationForWrapper(this); local
258 Notification* notification = notificationForWrapper(wrapper); local
265 Notification* notification = notificationForWrapper(wrapper); local
279 Notification* notification = 0; local
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
NotificationPresenter.cpp 47 static WebString identifierForNotification(const WebNotification& notification)
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)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
NotificationMgr.java 9 public void notify(int id, NotificationWrapper notification);
10 public void notify(String tag, int id, NotificationWrapper notification);
  /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...]
balloon_collection_impl.h 28 // 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
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
DRTDesktopNotificationPresenter.cpp 72 /* [in] */ IWebDesktopNotification* notification)
77 if (!notification->isHTML(&html) && html) {
78 notification->contentsURL(&url);
79 printf("DESKTOP NOTIFICATION: contents at %S\n", url ? url : L"");
81 notification->iconURL(&url);
82 notification->title(&title);
83 notification->text(&text);
84 printf("DESKTOP NOTIFICATION: icon %S, title %S, text %S\n",
90 // In this stub implementation, the notification is displayed immediately;
92 notification->notifyDisplay()
    [all...]
DRTDesktopNotificationPresenter.h 47 /* [in] */ IWebDesktopNotification* notification);
50 /* [in] */ IWebDesktopNotification* notification);
53 /* [in] */ IWebDesktopNotification* notification);
  /frameworks/base/core/java/com/android/internal/statusbar/
StatusBarNotification.java 19 import android.app.Notification;
26 boolean clearable = !n.ongoingEvent && ((notification.flags & Notification.FLAG_NO_CLEAR) == 0);
38 * Class encapsulating a Notification. Sent by the NotificationManagerService to the IStatusBar (in System UI).
46 public Notification notification; field in class:StatusBarNotification
53 int uid, int initialPid, int score, Notification notification) {
55 if (notification == null) throw new NullPointerException();
63 this.notification = notification
    [all...]
  /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);
RemovalListeners.java 46 public void onRemoval(final RemovalNotification<K, V> notification) {
50 listener.onRemoval(notification);
  /external/junit/src/org/junit/runner/
Runner.java 3 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/
StorageTrackerDelegate.h 34 - (void)originModified:(NSNotification *)notification;
  /external/webkit/Source/WebKit/chromium/src/
NotificationPresenterImpl.cpp 37 #include "Notification.h"
80 bool NotificationPresenterImpl::show(Notification* notification)
82 return m_presenter->show(PassRefPtr<Notification>(notification));
85 void NotificationPresenterImpl::cancel(Notification* notification)
87 m_presenter->cancel(PassRefPtr<Notification>(notification));
90 void NotificationPresenterImpl::notificationObjectDestroyed(Notification* notification
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
SimFullReceiver.java 23 import android.app.Notification;
33 * Receive Intent.SIM_FULL_ACTION. Handle notification that SIM is full.
52 Notification notification = new Notification(); local
53 notification.icon = R.drawable.stat_sys_no_sim;
54 notification.tickerText = context.getString(R.string.sim_full_title);
55 notification.defaults = Notification.DEFAULT_ALL;
57 notification.setLatestEventInfo
    [all...]
SmsRejectedReceiver.java 21 import android.app.Notification;
33 * Receive Intent.SMS_REJECTED. Handle notification that received SMS messages are being
64 Notification notification = new Notification(); local
67 notification.icon = R.drawable.stat_sys_no_sim;
77 notification.tickerText = context.getString(titleId);
78 notification.defaults = Notification.DEFAULT_ALL;
80 notification.setLatestEventInfo
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
TestingRemovalListeners.java 55 public void onRemoval(RemovalNotification<K, V> notification) {
56 add(notification);
69 public void onRemoval(RemovalNotification<K, V> notification) {
71 lastNotification = notification;
96 public void onRemoval(RemovalNotification<K, V> notification) {}
NullCacheTest.java 51 RemovalNotification<Object, Object> notification = listener.remove(); local
52 assertSame(key, notification.getKey());
53 assertSame(computed, notification.getValue());
54 assertSame(RemovalCause.SIZE, notification.getCause());
68 RemovalNotification<Object, Object> notification = listener.remove(); local
69 assertSame(key, notification.getKey());
70 assertSame(computed, notification.getValue());
71 assertSame(RemovalCause.SIZE, notification.getCause());
85 RemovalNotification<Object, Object> notification = listener.remove(); local
86 assertSame(key, notification.getKey())
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebEditingDelegate.h 51 - (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/
V8NotificationCenterCustom.cpp 37 #include "Notification.h"
56 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());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
BaseStatusBar.java 23 import android.app.Notification;
106 // used to notify status bar for suppressing notification LED
237 // Set up the initial notification state
244 Log.wtf(TAG, "Notification list length mismatch: keys=" + N
284 if (sbn.notification.contentView.getLayoutId() !=
538 StatusBarNotification sbn = entry.notification;
539 RemoteViews oneU = sbn.notification.contentView;
540 RemoteViews large = sbn.notification.bigContentView;
566 PendingIntent contentIntent = sbn.notification.contentIntent;
587 Slog.e(TAG, "couldn't inflate view for notification " + ident, e)
    [all...]
  /external/junit/src/org/junit/experimental/results/
FailureList.java 9 import org.junit.runner.notification.Failure;
10 import org.junit.runner.notification.RunListener;

Completed in 520 milliseconds

1 2 3 4 5 6 7 8 91011