HomeSort by relevance Sort by last modified time
    Searched refs:notifications (Results 51 - 75 of 233) sorted by null

1 23 4 5 6 7 8 910

  /development/samples/wearable/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
PriorityPresets.java 17 package com.example.android.support.wearable.notifications;
MainActivity.java 17 package com.example.android.support.wearable.notifications;
197 // Cancel all existing notifications to trigger fresh-posting behavior: For example,
202 // Post the updated notifications on a delay to avoid a cancel+post race condition
242 Notification[] notifications = preset.buildNotifications(this, options); local
244 // Post new notifications
245 for (int i = 0; i < notifications.length; i++) {
246 NotificationManagerCompat.from(this).notify(i, notifications[i]);
249 for (int i = notifications.length; i < postedNotificationCount; i++) {
252 postedNotificationCount = notifications.length;
NotificationIntentReceiver.java 17 package com.example.android.support.wearable.notifications;
31 "com.example.android.support.wearable.notifications.ACTION_EXAMPLE";
33 "com.example.android.support.wearable.notifications.ACTION_ENABLE_MESSAGES";
35 "com.example.android.support.wearable.notifications.ACTION_DISABLE_MESSAGES";
  /external/chromium_org/chrome/common/extensions/docs/examples/api/notifications/
background.js 6 Displays a notification with the current time. Requires "notifications"
31 // While activated, show notifications at the display frequency.
  /external/chromium_org/win8/metro_driver/
toast_notification_handler.h 8 #include <windows.ui.notifications.h>
45 HRESULT OnActivate(winui::Notifications::IToastNotification* notification,
49 mswr::ComPtr<winui::Notifications::IToastNotifier> notifier_;
50 mswr::ComPtr<winui::Notifications::IToastNotification> notification_;
stdafx.h 25 #include <windows.ui.notifications.h>
  /frameworks/base/data/sounds/
AudioPackage12_48.mk 23 $(LOCAL_PATH)/notifications/ogg/$(fn)_48k.ogg:system/media/audio/notifications/$(fn).ogg)
AudioPackage13.mk 23 $(LOCAL_PATH)/notifications/material/ogg/$(fn).ogg:system/media/audio/notifications/$(fn).ogg)
AudioPackage13_48.mk 23 $(LOCAL_PATH)/notifications/material/ogg/$(fn)_48k.ogg:system/media/audio/notifications/$(fn).ogg)
  /external/chromium_org/chrome/browser/extensions/api/notifications/
notifications_apitest.cc 10 #include "chrome/browser/extensions/api/notifications/notifications_api.h"
13 #include "chrome/browser/notifications/notification.h"
14 #include "chrome/browser/notifications/notification_ui_manager.h"
72 // A sequential list of user gesture notifications from the test extension(s).
99 ASSERT_TRUE(RunExtensionTest("notifications/api/basic_usage")) << message_;
103 ASSERT_TRUE(RunExtensionTest("notifications/api/events")) << message_;
107 ASSERT_TRUE(RunExtensionTest("notifications/api/csp")) << message_;
112 LoadExtensionAndWait("notifications/api/by_user");
144 ASSERT_TRUE(RunExtensionTest("notifications/api/partial_update")) << message_;
152 const message_center::NotificationList::Notifications& notifications local
256 const message_center::NotificationList::Notifications& notifications = local
    [all...]
  /external/chromium_org/content/browser/frame_host/
navigation_controller_impl_unittest.cc 284 TestNotificationTracker notifications; local
285 RegisterForAllNavNotifications(&notifications, &controller);
351 TestNotificationTracker notifications; local
352 RegisterForAllNavNotifications(&notifications, &controller);
359 // notifications we're listening for.
360 EXPECT_EQ(0U, notifications.size());
377 // We should have gotten no notifications from the preceeding checks.
378 EXPECT_EQ(0U, notifications.size());
449 TestNotificationTracker notifications; local
450 RegisterForAllNavNotifications(&notifications, &controller)
587 TestNotificationTracker notifications; local
629 TestNotificationTracker notifications; local
664 TestNotificationTracker notifications; local
702 TestNotificationTracker notifications; local
732 TestNotificationTracker notifications; local
769 TestNotificationTracker notifications; local
813 TestNotificationTracker notifications; local
868 TestNotificationTracker notifications; local
911 TestNotificationTracker notifications; local
951 TestNotificationTracker notifications; local
1002 TestNotificationTracker notifications; local
1074 TestNotificationTracker notifications; local
1138 TestNotificationTracker notifications; local
1190 TestNotificationTracker notifications; local
1252 TestNotificationTracker notifications; local
1386 TestNotificationTracker notifications; local
1444 TestNotificationTracker notifications; local
1492 TestNotificationTracker notifications; local
1573 TestNotificationTracker notifications; local
1637 TestNotificationTracker notifications; local
1686 TestNotificationTracker notifications; local
1743 TestNotificationTracker notifications; local
1800 TestNotificationTracker notifications; local
1848 TestNotificationTracker notifications; local
1889 TestNotificationTracker notifications; local
1913 TestNotificationTracker notifications; local
1944 TestNotificationTracker notifications; local
2012 TestNotificationTracker notifications; local
2038 TestNotificationTracker notifications; local
2147 TestNotificationTracker notifications; local
2187 TestNotificationTracker notifications; local
2611 TestNotificationTracker notifications; local
2857 TestNotificationTracker notifications; local
2899 TestNotificationTracker notifications; local
2938 TestNotificationTracker notifications; local
2990 TestNotificationTracker notifications; local
3036 TestNotificationTracker notifications; local
4025 TestNotificationTracker notifications; local
4053 TestNotificationTracker notifications; local
4093 TestNotificationTracker notifications; local
    [all...]
  /external/chromium_org/ui/message_center/
notification_list_unittest.cc 88 NotificationList::Notifications::iterator iter =
112 bool IsInNotifications(const NotificationList::Notifications& notifications,
114 for (NotificationList::Notifications::const_iterator iter =
115 notifications.begin(); iter != notifications.end(); ++iter) {
200 const NotificationList::Notifications notifications = local
202 EXPECT_EQ(replaced, (*notifications.begin())->id());
203 EXPECT_EQ(UTF8ToUTF16("newtitle"), (*notifications.begin())->title())
362 NotificationList::Notifications notifications = local
434 const NotificationList::Notifications notifications = local
561 const NotificationList::Notifications notifications = local
594 NotificationList::Notifications notifications = local
    [all...]
notification_list.cc 75 for (Notifications::iterator iter = notifications_.begin();
95 Notifications::iterator iter = GetNotification(old_id);
124 NotificationList::Notifications NotificationList::GetNotificationsByNotifierId(
126 Notifications notifications; local
127 for (Notifications::iterator iter = notifications_.begin();
130 notifications.insert(*iter);
132 return notifications;
137 Notifications::iterator iter = GetNotification(notification_id);
146 Notifications::iterator iter = GetNotification(notification_id)
303 Notifications notifications = GetVisibleNotifications(blockers); local
    [all...]
  /developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/notifications/
MainActivity.java 17 package com.example.android.notifications;
197 // Cancel all existing notifications to trigger fresh-posting behavior: For example,
202 // Post the updated notifications on a delay to avoid a cancel+post race condition
242 Notification[] notifications = preset.buildNotifications(this, options); local
244 // Post new notifications
245 for (int i = 0; i < notifications.length; i++) {
246 NotificationManagerCompat.from(this).notify(i, notifications[i]);
249 for (int i = notifications.length; i < postedNotificationCount; i++) {
252 postedNotificationCount = notifications.length;
NotificationIntentReceiver.java 17 package com.example.android.notifications;
31 "com.example.android.notifications.ACTION_EXAMPLE";
33 "com.example.android.notifications.ACTION_ENABLE_MESSAGES";
35 "com.example.android.notifications.ACTION_DISABLE_MESSAGES";
  /external/chromium_org/chrome/browser/resources/google_now/
cards.js 47 * This is the ID used with chrome.notifications API.
118 * @param {ChromeNotificationId} chromeNotificationId chrome.notifications ID
133 instrumented.notifications.clear(chromeNotificationId, function() {});
138 instrumented.notifications.update(
148 instrumented.notifications.create(
155 console.error('notifications.create: ID=' +
168 * Iterates uncombined notifications in a combined card, determining for
191 * @param {ChromeNotificationId} chromeNotificationId chrome.notifications ID
256 // otherwise notifications data with 2 pointers to the same object won't
272 // received notifications have hideTime
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
options.js 13 var checkbox = document.getElementById('notifications');
  /external/chromium_org/chrome/renderer/resources/extensions/
notifications_custom_bindings.js 5 // Custom bindings for the notifications API.
7 var binding = require('binding').Binding.create('notifications');
122 var handleCreate = genHandle('notifications.create',
124 var handleUpdate = genHandle('notifications.update',
  /external/chromium_org/ui/file_manager/file_manager/background/js/
progress_center.js 38 * Notifications created by progress center.
46 * ID set of notifications that is progressing now.
66 chrome.notifications.onButtonClicked.addListener(
68 chrome.notifications.onClosed.addListener(this.onClosed_.bind(this));
109 // Clear notifications for complete or canceled items.
114 chrome.notifications.clear(item.id, proceed);
134 chrome.notifications.create(item.id, params, proceed);
136 chrome.notifications.update(item.id, params, proceed);
184 // Update notifications.
229 // If there is no panel, show the notifications
    [all...]
  /external/chromium_org/ui/message_center/views/
message_center_bubble.cc 120 const NotificationList::Notifications& notifications = local
122 message_center_view_->SetNotifications(notifications);
  /development/samples/AppNavigation/src/com/example/android/appnavigation/app/
NotificationsActivity.java 34 setContentView(R.layout.notifications);
  /external/chromium_org/components/storage_monitor/
volume_mount_watcher_win.h 27 // This class watches the volume mount points and sends notifications to
55 // Set the volume notifications object to be used when new
57 void SetNotifications(StorageMonitor::Receiver* notifications);
117 // The notifications object to use to signal newly attached volumes. Only
  /external/chromium_org/chrome/browser/notifications/
notification_browsertest.cc 19 #include "chrome/browser/notifications/desktop_notification_service.h"
20 #include "chrome/browser/notifications/desktop_notification_service_factory.h"
21 #include "chrome/browser/notifications/notification.h"
50 const char kExpectedIconUrl[] = "/notifications/no_such_file.png";
154 "/notifications/notification_tester.html");
369 "/notifications/notifications_request_function.html"));
397 message_center::NotificationList::Notifications notifications = local
400 (*notifications.rbegin())->title());
402 (*notifications.rbegin())->message())
416 message_center::NotificationList::Notifications notifications = local
595 message_center::NotificationList::Notifications notifications = local
775 message_center::NotificationList::Notifications notifications = local
    [all...]
  /packages/experimental/NotificationListenerSample/src/com/android/example/notificationlistener/
NotificationListenerActivity.java 145 final List<StatusBarNotification> notifications = Listener.getNotifications(); local
146 if (notifications != null) {
147 mStatusAdaptor.init(notifications);
256 public void init(List<StatusBarNotification> notifications) {
257 mNotifications = notifications;
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/
MobiCoreDevice.cpp 289 // Clear the notifications queue. We asume the race condition we have
291 notifications = std::queue<notification_t>();
319 LOG_I(" After MCP OPEN, we have %d queued notifications",
320 notifications.size());
334 // We have some queued notifications and we need to send them to them
336 while (!notifications.empty()) {
337 trustletSession->queueNotification(&notifications.front());
338 notifications.pop();
641 notifications.push(notification);

Completed in 1382 milliseconds

1 23 4 5 6 7 8 910