HomeSort by relevance Sort by last modified time
    Searched full:notification (Results 201 - 225 of 4867) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/services/Telephony/src/com/android/phone/
EmergencyCallbackModeService.java 19 import android.app.Notification;
46 * Application service that inserts/removes Emergency Callback Mode notification and
47 * updates Emergency Callback Mode countdown clock in the notification
104 // Unregister ECM timer reset notification
107 // Cancel the notification and timer
136 * Start timer notification for Emergency Callback Mode
143 // Show the notification
146 // Start countdown timer for the notification updates
169 * Shows notification for Emergency Callback Mode
175 Log.i(LOG_TAG, "Asked to show notification but not in ECM mode")
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
MissedCallNotifier.java 19 import android.app.Notification;
47 * Creates a notification for calls that the user missed (neither answered nor rejected).
93 /** Clears missed call notification and marks the call log's missed calls as read. */
115 * Create a system notification for the missed call.
123 final String expandedText; // The text in the notification's line 1 and 2.
125 // Display the first line of the notification:
137 // Create the notification.
138 Notification.Builder builder = new Notification.Builder(mContext);
180 Notification notification = builder.build() local
    [all...]
  /external/chromium_org/components/invalidation/
p2p_invalidator.cc 245 const notifier::Notification& notification) {
247 DVLOG(1) << "Received notification " << notification.ToString();
249 DVLOG(1) << "Not logged in yet -- not emitting notification";
253 DVLOG(1) << "Notifications not on -- not emitting notification";
256 if (notification.channel != kSyncP2PNotificationChannel) {
257 LOG(WARNING) << "Notification from unexpected source "
258 << notification.channel;
261 if (!notification_data.ResetFromString(notification.data))
293 notifier::Notification notification; local
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/20/
missingSinces.txt 1 NO DOC BLOCK: android.app.Notification.Action.Builder Class
2 NO DOC BLOCK: android.app.Notification.Action.Extender Interface
3 NO DOC BLOCK: android.app.Notification.Action.WearableExtender Class
4 NO DOC BLOCK: android.app.Notification.Extender Interface
5 NO DOC BLOCK: android.app.Notification.WearableExtender Class
11 NO DOC BLOCK: android.app.Notification.Builder Method addAction(android.app.Notification.Action)
12 NO DOC BLOCK: android.app.Notification.Builder Method addExtras(android.os.Bundle)
14 NO DOC BLOCK: android.app.Notification.Builder Method extend(android.app.Notification.Extender
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationUsageStats.java 17 package com.android.server.notification;
28 import android.service.notification.StatusBarNotification;
31 import com.android.server.notification.NotificationManagerService.DumpFilter;
38 * Keeps track of notification activity, display, and user interaction.
41 * notification usage. Some metrics are updated as events occur. Others, namely
42 * those involving durations, are updated as the notification is canceled.</p>
65 * Called when a notification has been posted.
67 public synchronized void registerPostedByApp(NotificationRecord notification) {
68 notification.stats = new SingleNotificationStats();
69 notification.stats.posttimeElapsedMs = SystemClock.elapsedRealtime()
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
StatusBarNotifier.java 23 import android.app.Notification;
48 // notification types
124 * Updates the phone app's status bar notification *and* launches the
127 * If an incoming call is ringing (or call-waiting), the notification
139 * update or cancel the in-call notification based on the current
149 * Take down the in-call notification.
172 * status bar notification based on the current telephony state, or
173 * cancels the notification if the phone is totally idle.
181 // Since we don't normally show a notification while the incall screen is
182 // in the foreground, if we show the outgoing notification before the activit
317 Notification notification = builder.build(); local
    [all...]
  /frameworks/base/docs/html/guide/topics/ui/notifiers/
notifications.jd 9 <li><a href="#CreateNotification">Creating a Notification</a>
11 <li><a href="#Required">Required notification contents</a></li>
12 <li><a href="#Optional">Optional notification contents and settings</a></li>
13 <li><a href="#Actions">Notification actions</a></li>
14 <li><a href="#Priority">Notification priority</a></li>
15 <li><a href="#SimpleNotification">Creating a simple notification</a></li>
16 <li><a href="#ApplyStyle">Applying an expanded layout to a notification</a></li>
32 <li><a href="#Progress">Displaying Progress in a Notification</a>
38 <li><a href="#metadata">Notification Metadata</a></li>
45 <li><a href="#CustomNotification">Custom Notification Layouts</a></li
    [all...]
  /external/chromium_org/ash/system/chromeos/bluetooth/
bluetooth_notification_controller.cc 21 #include "ui/message_center/notification.h"
28 using message_center::Notification;
32 // Identifier for the discoverable notification.
36 // Identifier for the pairing notification; the Bluetooth code ensures we
38 // means we "update" one notification if not handled rather than continually
43 // Identifier for the notification that a device has been paired with the
49 // pairing notification and sending the confirmation, rejection or cancellation
103 VLOG(1) << "Pairing notification closed. by_user = " << by_user;
104 // Ignore notification closes generated as a result of pairing completion.
122 VLOG(1) << "Pairing notification, button click: " << button_index
    [all...]
  /external/chromium_org/ui/message_center/views/
notification_view_unittest.cc 12 #include "ui/message_center/notification.h"
36 Notification* notification() { return notification_.get(); } function in class:message_center::NotificationViewTest
92 notification_view()->CreateOrUpdateViews(*notification());
98 scoped_ptr<Notification> notification_;
112 // Create a dummy notification.
116 new Notification(NOTIFICATION_TYPE_BASE_FORMAT,
117 std::string("notification id"),
128 // Then create a new NotificationView with that single notification.
188 notification()->set_image(gfx::Image())
    [all...]
  /frameworks/base/docs/html/design/patterns/
notifications.jd 32 <p>The notification system allows users to keep informed about relevant and
53 <li>Cloud-synced notifications: Dismissing a notification on one of your
58 <p class="note"><strong>Note:</strong> Notification design in this version of
60 departure from that of previous versions. For information about notification design in previous
63 <h2 id="Anatomy">Anatomy of a Notification</h2>
65 <p>This section goes over basic parts of a notification and how they can
73 <li> The notification's <strong>icon</strong>. The icon symbolizes the
75 potentially indicate notification type if the app generates more than one
77 <li> A notification <strong>title</strong> and additional
82 <p>Notifications created with {@link android.app.Notification.Builder Notification.Builder
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/19/changes/
android.app.Notification.html 10 android.app.Notification
74 Class android.app.<A HREF="../../../../reference/android/app/Notification.html" target="_top"><font size="+2"><code>Notification</code></font></A>
87 <A NAME="android.app.Notification.EXTRA_INFO_TEXT"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#EXTRA_INFO_TEXT" target="_top"><code>EXTRA_INFO_TEXT</code></A></nobr>
94 <A NAME="android.app.Notification.EXTRA_LARGE_ICON"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#EXTRA_LARGE_ICON" target="_top"><code>EXTRA_LARGE_ICON</code></A></nobr>
101 <A NAME="android.app.Notification.EXTRA_LARGE_ICON_BIG"></A>
102 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/app/Notification.html#EXTRA_LARGE_ICON_BIG" target="_top"><code>EXTRA_LARGE_ICON_BIG</code></A></nobr>
108 <A NAME="android.app.Notification.EXTRA_PEOPLE"></A
    [all...]
  /development/samples/browseable/LNotifications/
_index.jd 2 sample.group=Notification
  /external/chromium_org/cc/base/
unique_notifier.h 20 // Configure this notifier to issue the |closure| notification when scheduled.
28 // Schedule a notification to be run. If another notification is already
29 // pending, then only one notification will take place.
  /external/chromium_org/chrome/browser/notifications/
notification_object_proxy.h 18 // A NotificationObjectProxy stands in for the JavaScript Notification object
19 // which corresponds to a notification toast on the desktop. It can be signaled
20 // when various events occur regarding the desktop notification, and the
45 // Callback information to find the JS Notification object where it lives.
  /external/chromium_org/chrome/browser/web_resource/
eula_accepted_notifier.h 14 // notification when the EULA is accepted.
44 // Callback for EULA accepted pref change notification.
50 // Used to listen for the EULA accepted pref change notification.
53 // Observer of the EULA accepted notification.
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/background-simple/
background.html 9 new Notification("Simple Background App", {
  /external/chromium_org/chrome/common/extensions/docs/templates/articles/
desktop_notifications.html 22 <img src="{{static}}/images/notification-windows.png"
25 <img src="{{static}}/images/notification-mac.png"
28 <img src="{{static}}/images/notification-linux.png"
33 You create the notification window
66 // Create a simple text notification:
67 var notification = webkitNotifications.createNotification(
69 'Hello!', // notification title
70 'Lorem ipsum...' // notification body text
73 // Or create an HTML notification:
74 var notification = webkitNotifications.createHTMLNotification
    [all...]
richNotifications.html 18 to the left of the notification message, and a contextMessage field,
28 alt="Basic notification">
37 alt="List notification">
46 alt="Image notification">
52 alt="Progress notification">
77 all notification types can include up to two action items.
86 alt="Action in notification">
94 passing in the notification details
105 which defines available notification details
117 <h3 id="basic">Create basic notification</h3
    [all...]
  /external/chromium_org/content/shell/renderer/test_runner/
notification_presenter.h 25 // Called by the TestRunner to simulate a user clicking on a notification.
34 virtual bool show(const blink::WebNotification& notification);
35 virtual void cancel(const blink::WebNotification& notification);
36 virtual void objectDestroyed(const blink::WebNotification& notification);
  /external/chromium_org/third_party/skia/src/views/mac/
SkEventNotifier.h 10 - (void)receiveSkEvent:(NSNotification*)notification;
SkEventNotifier.mm 36 - (void)receiveSkEvent:(NSNotification *)notification {
54 //post a SkEventClass event to the default notification queue
55 NSNotification* notification = [NSNotification notificationWithName:SkEventClass object:nil];
56 [[NSNotificationQueue defaultQueue] enqueueNotification:notification
  /external/chromium_org/ui/views/layout/
layout_manager.h 30 // Notification that this LayoutManager has been installed on a particular
34 // Notification that this LayoutManager has been uninstalled on a particular
51 // Notification that a view has been added.
54 // Notification that a view has been removed.
  /external/chromium_org/win8/metro_driver/
toast_notification_handler.h 13 // Provides functionality to display a metro style toast notification.
16 // Holds information about a desktop notification to be displayed.
42 void DisplayNotification(const DesktopNotification& notification);
45 HRESULT OnActivate(winui::Notifications::IToastNotification* notification,
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowNotification.java 3 import android.app.Notification;
11 @Implements(Notification.class)
14 public Notification getRealNotification() {
19 Notification realNotification;
  /external/skia/src/views/mac/
SkEventNotifier.h 10 - (void)receiveSkEvent:(NSNotification*)notification;

Completed in 644 milliseconds

1 2 3 4 5 6 7 891011>>