HomeSort by relevance Sort by last modified time
    Searched refs:Notification (Results 101 - 125 of 212) sorted by null

1 2 3 45 6 7 8 9

  /external/chromium/chrome/browser/chromeos/notifications/
notification_browsertest.cc 71 Notification NewMockNotification(const std::string& id) {
75 Notification NewMockNotification(NotificationDelegate* delegate) {
105 // Busy loop to wait until the webkit give some size to the notification.
144 // Using system notification as regular notification.
185 // Using system notification as regular notification.
233 Notification notify = NewMockNotification(delegate.get());
239 Notification update = SystemNotificationFactory::Create(
245 Notification update_and_show = SystemNotificationFactory::Create
    [all...]
system_notification.cc 10 #include "chrome/browser/notifications/notification.h"
65 Notification notify = SystemNotificationFactory::Create(icon_,
68 // Force showing a user hidden notification on an urgent transition.
desktop_notifications_unittest.cc 33 void MockBalloonCollection::Add(const Notification& notification,
38 Notification test_notification(
39 notification.origin_url(),
40 notification.content_url(),
41 notification.display_source(),
42 notification.replace_id(),
43 new LoggingNotificationProxy(notification.notification_id()));
47 Balloon* MockBalloonCollection::MakeBalloon(const Notification& notification,
    [all...]
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertService.java 20 import android.app.Notification;
50 /** Intent action to display alert dialog/notification, after verifying the alert is new. */
53 /** Use the same notification ID for non-emergency alerts. */
178 // new message, show the alert or notification on UI thread
206 // add notification to the bar
340 * Add the new alert to the notification bar (non-emergency alerts), or launch a
353 // Create intent to show the new messages when user selects the notification.
362 Notification.Builder builder = new Notification.Builder(this)
367 .setDefaults(Notification.DEFAULT_ALL)
    [all...]
  /external/chromium/testing/gtest/test/
gtest_output_test_.cc 53 using testing::internal::Notification;
264 Notification n1;
265 Notification n2;
266 Notification n3;
461 Notification spawn_thread_started;
462 Notification spawn_thread_ok_to_terminate;
gtest_stress_test.cc 52 using internal::Notification;
131 Notification threads_can_start;
  /external/gtest/test/
gtest_output_test_.cc 53 using testing::internal::Notification;
264 Notification n1;
265 Notification n2;
266 Notification n3;
461 Notification spawn_thread_started;
462 Notification spawn_thread_ok_to_terminate;
gtest_stress_test.cc 52 using internal::Notification;
131 Notification threads_can_start;
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest_output_test_.cc 53 using testing::internal::Notification;
264 Notification n1;
265 Notification n2;
266 Notification n3;
461 Notification spawn_thread_started;
462 Notification spawn_thread_ok_to_terminate;
gtest_stress_test.cc 52 using internal::Notification;
131 Notification threads_can_start;
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerReceiver.java 20 import android.app.Notification;
119 // Update the in-use notification
238 /** Public and static to allow timer fragment to update notification with new label. **/
249 showCollapsedNotification(context, label, contentText, Notification.PRIORITY_MAX,
260 showCollapsedNotification(context, title, text, Notification.PRIORITY_HIGH,
277 Notification.Builder builder = new Notification.Builder(context)
290 Notification notification = builder.build(); local
291 notification.contentIntent = pendingIntent
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadNotifier.java 26 import android.app.Notification;
53 * states. Collapses similar downloads into a single notification, and builds
136 // Build notification for each cluster
141 final Notification.Builder builder = new Notification.Builder(mContext);
236 final Notification notif;
266 final Notification.InboxStyle inboxStyle = new Notification.InboxStyle(builder);
335 * {@link Notification}.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java 24 import android.app.Notification;
25 import android.app.Notification.BigPictureStyle;
101 private final Notification.Builder mNotificationBuilder;
110 // WORKAROUND: We want the same notification across screenshots that we update so that we don't
111 // spam a user's notification drawer. However, we only show the ticker for the saving state
112 // and if the ticker text is the same as the previous notification, then it will not show. So
130 // Create the large notification icon
151 // Show the intermediate notification
155 mNotificationBuilder = new Notification.Builder(context)
163 mNotificationStyle = new Notification.BigPictureStyle(
    [all...]
  /development/samples/training/notify-user/src/com/example/android/pingme/
PingService.java 18 import android.app.Notification;
26 * PingService creates a notification that includes 2 buttons: one to snooze the
27 * notification, and one to dismiss it.
74 // expanded view of the notification.
87 .setContentTitle(getString(R.string.notification))
89 .setDefaults(Notification.DEFAULT_ALL) // requires VIBRATE permission
93 * in the detail area of the expanded notification.
105 * Clicking the notification itself displays ResultActivity, which provides
106 * UI for snoozing or dismissing the notification.
113 // Because clicking the notification opens a new ("special") activity, there'
    [all...]
  /external/webkit/Source/WebCore/bindings/cpp/
WebDOMEventTarget.cpp 30 #include "Notification.h"
125 ConvertTo(Notification)
188 if (WebCore::Notification* notification = value->toNotification())
189 return toWebKit(notification);
  /external/webkit/Source/WebCore/bindings/js/
JSEventTarget.cpp 78 #include "Notification.h"
160 if (Notification* notification = target->toNotification())
161 return toJS(exec, notification);
233 CONVERT_TO_EVENT_TARGET(Notification)
  /external/chromium/chrome/browser/notifications/
balloon_collection_base.cc 9 #include "chrome/browser/notifications/notification.h"
41 if ((*iter)->notification().notification_id() == id)
57 if ((*iter)->notification().origin_url() == source_origin)
76 const Notification& notification) {
79 if ((*iter)->notification().notification_id() ==
80 notification.notification_id()) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StatusBarIconView.java 19 import android.app.Notification;
52 private Notification mNotification;
54 public StatusBarIconView(Context context, String slot, Notification notification) {
62 mNotification = notification;
63 setContentDescription(notification);
65 // We do not resize and scale system icons (on the right), only notification icons (on the
67 if (notification != null) {
280 private void setContentDescription(Notification notification) {
    [all...]
  /frameworks/base/services/java/com/android/server/net/
LockdownVpnTracker.java 21 import android.app.Notification;
294 final Notification.Builder builder = new Notification.Builder(mContext);
300 builder.setPriority(Notification.PRIORITY_LOW);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ExportProcessor.java 18 import android.app.Notification;
188 // bother notification bar too much.
240 final Notification notification = local
245 mJobId, notification);
249 if (DEBUG) Log.d(LOG_TAG, "send cancel notification");
252 final Notification notification = local
255 mJobId, notification);
259 if (DEBUG) Log.d(LOG_TAG, "send finish notification: " + title + ", " + description)
262 final Notification notification = local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmAlertFullScreen.java 20 import android.app.Notification;
209 // Get the display time for the snooze and update the notification.
226 Notification notif = new Notification.Builder(getApplicationContext())
232 .setPriority(Notification.PRIORITY_MAX)
265 // the notification or stop the service.
267 // Cancel the notification and stop playing the alarm
  /packages/apps/Dialer/src/com/android/dialer/calllog/
DefaultVoicemailNotifier.java 19 import android.app.Notification;
42 * Implementation of {@link VoicemailNotifier} that shows a notification in the
50 /** The identifier of the notification of new voicemails. */
86 /** Updates the notification and notifies of the call with the given URI. */
89 // Lookup the list of new voicemails to include in the notification.
99 // No voicemails to notify about: clear the notification.
106 // This represents a list of names to include in the notification.
149 // Determine the title of the notification and the icon for it.
155 Notification.Builder notificationBuilder = new Notification.Builder(mContext
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
MessagingNotification.java 31 import android.app.Notification;
85 * This class is used to update the notification indicator. It will check whether
86 * there are unread messages. If yes, it would show the notification indicator,
98 * This is the volume at which to play the in-conversation notification sound,
99 * expressed as a fraction of the system notification volume.
151 Log.d(TAG, "[MessagingNotification] clear notification: mark all msgs seen");
174 // show in a single notification.
181 // set up the intent filter for notification deleted action
189 // initialize the notification deleted action
197 * thread will not generate a notification icon and will play the notification sound at a lowe
939 final Notification notification; local
1113 Notification notification = new Notification(); local
    [all...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssService.java 19 import android.app.Notification;
63 Notification note = new Notification(this, R.drawable.rss_icon, "RSS Service",
  /frameworks/base/packages/Shell/src/com/android/shell/
BugreportReceiver.java 24 import android.app.Notification;
87 final Notification.Builder builder = new Notification.Builder(context);

Completed in 1806 milliseconds

1 2 3 45 6 7 8 9