/external/chromium_org/cc/base/ |
delayed_unique_notifier.h | 20 // Configure this notifier to issue the |closure| notification in |delay| time 30 // Schedule a notification to be run. If another notification is already 32 // if delay is 16ms and a notification has been scheduled 10ms ago (ie, it 34 // the only notification that arrives will happen in (at least) 16ms from now. 40 // Returns true if a notification is currently scheduled to run.
|
/external/chromium_org/chrome/browser/notifications/ |
notification_conversion_helper.h | 8 #include "chrome/browser/notifications/notification.h" 25 // convert between different types of notification data. 28 // Converts Notification::Notification data to 31 const Notification& notification,
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowService.java | 4 import android.app.Notification; 20 private Notification lastForegroundNotification; 58 public final void startForeground(int id, Notification notification) { 59 lastForegroundNotification = notification; 68 public Notification getLastForegroundNotification() {
|
/frameworks/base/core/java/android/app/backup/ |
IFullBackupRestoreObserver.aidl | 28 * Notification: a full backup operation has begun. 33 * Notification: the system has begun backing up the given package. 42 * Notification: the full backup operation has ended. 47 * Notification: a restore-from-full-backup operation has begun. 52 * Notification: the system has begun restore of the given package. 61 * Notification: the restore-from-full-backup operation has ended.
|
/external/chromium_org/chrome/browser/drive/ |
drive_notification_observer.h | 14 // Called when a notification from Google Drive is received. 17 // Called when XMPP-based push notification is enabled or disabled.
|
/external/chromium_org/chrome/browser/resources/sync_file_system_internals/ |
sync_service.html | 10 <td>Notification Source</td> 11 <td id="notification-source">N/A</td>
|
/external/chromium_org/chrome/common/extensions/api/notifications/ |
notification_style.h | 11 // by the notification center within a notification.
|
/external/chromium_org/third_party/WebKit/Source/modules/notifications/ |
NotificationClient.h | 42 class Notification; 55 // Requests that a notification be shown. 56 virtual bool show(Notification*) = 0; 58 // Requests that a notification that has already been shown be closed. 59 virtual void close(Notification*) = 0; 61 // Informs the presenter that a Notification object has been destroyed 63 // the notification, but must not attempt to call the event handlers. 64 virtual void notificationObjectDestroyed(Notification*) = 0;
|
/external/chromium_org/ui/message_center/ |
message_center_switches.cc | 10 // notification is removed, no matter whether the message center is displayed 13 "enable-message-center-always-scroll-up-upon-notification-removal";
|
/external/chromium_org/ui/views/cocoa/ |
views_nswindow_delegate.mm | 26 - (void)windowWillClose:(NSNotification*)notification { 27 DCHECK([parent_->ns_window() isEqual:[notification object]]);
|
/external/junit/src/org/junit/experimental/results/ |
FailureList.java | 9 import org.junit.runner.notification.Failure; 10 import org.junit.runner.notification.RunListener;
|
/frameworks/base/core/tests/notificationtests/src/android/app/ |
NotificationStressTest.java | 31 * Test which spams notification manager with a large number of notifications, for both stress and 72 // Cancel one of every five notifications to vary load on notification manager 80 // Create "typical" notification with random icon 81 Notification notification = new Notification(ICONS[mRandom.nextInt(ICONS.length)], text, local 88 notification.setLatestEventInfo(mContext, title, subtitle, pendingIntent); 89 mNotificationManager.notify(id, notification);
|
/packages/experimental/NotificationLog/ |
AndroidManifest.xml | 8 android:label="Notification Log" > 11 android:label="Notification Log" >
|
/external/chromium_org/sync/protocol/ |
synced_notification_render.proto | 17 // where no "native" app can handle the notification. 19 // Render information for the collapsed (summary) view of a notification. 22 // Render information for the expanded view of a notification. 27 // notification. 31 // The creation time of the notification in microseconds since the UNIX 47 // notification. 51 // Collapsed information for each notification in the coalesced group. 55 // viewer can be taken to. These relate to the coalesced notification. 66 // Profile image(s) of the notification creator(s) to show in the 70 // Heading - often the name(s) of the notification creator(s) [all...] |
/frameworks/base/docs/html/sdk/api_diff/21/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.AUDIO_ATTRIBUTES_DEFAULT"></A> 88 <nobr><code>AudioAttributes</code> <A HREF="../../../../reference/android/app/Notification.html#AUDIO_ATTRIBUTES_DEFAULT" target="_top"><code>AUDIO_ATTRIBUTES_DEFAULT</code></A></nobr> 94 <A NAME="android.app.Notification.CATEGORY_ALARM"></A> 95 <nobr><code>String</code> <A HREF="../../../../reference/android/app/Notification.html#CATEGORY_ALARM" target="_top"><code>CATEGORY_ALARM</code></A></nobr> 101 <A NAME="android.app.Notification.CATEGORY_CALL"></A> 102 <nobr><code>String</code> <A HREF="../../../../reference/android/app/Notification.html#CATEGORY_CALL" target="_top"><code>CATEGORY_CALL</code></A></nobr> 108 <A NAME="android.app.Notification.CATEGORY_EMAIL"></A [all...] |
/frameworks/base/core/java/android/app/ |
Notification.java | 64 * A class that represents how a persistent notification is to be presented to 67 * <p>The {@link Notification.Builder Notification.Builder} has been added to make it 77 public class Notification implements Parcelable 79 private static final String TAG = "Notification"; 82 * An activity that provides a user interface for adjusting notification preferences for its 84 * {@link android.app.Notification Notifications}. 96 * Use the default notification sound. This will ignore any given 100 * A notification that is noisy is more likely to be presented as a heads-up notification [all...] |
/developers/samples/android/notification/BasicNotifications/ |
template-params.xml | 20 <group>Notification</group> 28 This sample demonstrates how to display events in the system\'s notification bar. The 39 <categories>Notification</categories> 54 A basic app showing how to display events in the system's notification bar using 62 The [Notification API][1] allows the app developers to display a message outside 65 The class [Notification][2] was added in the Android 3.0 (API level 11), but this 69 A Notificaiton can be created using Notification.Builder object. 83 To issue the notification, call notify() method in the [NotificationManager][8]. 84 The code snippet will immediately display the notification icon in the 85 notification bar [all...] |
/external/chromium_org/chrome/browser/chromeos/file_system_provider/ |
notification_manager.cc | 13 #include "ui/message_center/notification.h" 22 // Extension icon size for the notification. 25 // Forwards notification events to the notification manager. 29 // Passing a raw pointer is safe here, since the life of each notification is 119 scoped_ptr<message_center::Notification> 129 scoped_ptr<message_center::Notification> notification( 130 new message_center::Notification( 146 notification->SetSystemPriority() [all...] |
/frameworks/base/docs/html/training/notify-user/ |
index.jd | 46 A notification is a user interface element that you display outside your app's normal UI to indicate 47 that an event has occurred. Users can choose to view the notification while using other apps and respond 55 implement the most common notification designs. 61 <strong><a href="build-notification.html">Building a Notification</a></strong> 64 Learn how to create a notification 66 required features, and issue the notification. 73 navigation for an {@link android.app.Activity} started from a notification. 89 Learn how to create a big view within an expanded notification, while still maintaining 95 <a href="display-progress.html">Displaying Progress in a Notification</a [all...] |
/frameworks/base/docs/html/training/wearables/notifications/ |
creating.jd | 1 page.title=Creating a Notification for Wearables 12 <li><a href="#NotificationBuilder">Create Notifications with the Notification Builder</a></li> 16 <li><a href="#AddWearableFeatures">Add Wearable Features for a Notification</a></li> 17 <li><a href="#Deliver">Deliver the Notification</a></li> 52 <h2 id="NotificationBuilder">Create Notifications with the Notification Builder</h2> 55 support library</a> allows you to create notifications using the latest notification features 59 <p>To create a notification with the support library, you create an instance of 60 {@link android.support.v4.app.NotificationCompat.Builder} and issue the notification by 66 // Build intent for notification content 83 // Build the notification and issues it with notification manager [all...] |
/cts/tests/tests/app/src/android/app/cts/ |
NotificationTest.java | 19 import android.app.Notification; 30 private Notification mNotification; 43 mNotification = new Notification(); 48 mNotification = new Notification(); 54 mNotification = new Notification(0, TICKER_TEXT, notificationTime); 62 mNotification = new Notification(); 67 mNotification = new Notification(); 96 // Test Notification(Parcel) 97 Notification result = new Notification(parcel) [all...] |
/developers/build/prebuilts/gradle/Geofencing/Wearable/src/main/java/com/example/android/wearable/geofencing/ |
HomeListenerService.java | 27 import android.app.Notification; 28 import android.app.Notification.Action; 76 // The user has entered a geofence - post a notification! 86 * Deletes the check-in notification when the DataItem is deleted. 88 * notification to cancel (in this case, there is at most 1 notification). 98 * Posts a local notification for the given geofence id, with an option to check in. 100 * @param dataItemUri The Uri for the DataItem that triggered this notification. Used to delete 101 * this DataItem when the notification is dismissed. 104 // Use the geofenceId to determine the title and background of the check-in notification 135 Notification notification = new Notification.Builder(this) local [all...] |
/developers/samples/android/wearable/wear/Geofencing/Wearable/src/main/java/com/example/android/wearable/geofencing/ |
HomeListenerService.java | 27 import android.app.Notification; 28 import android.app.Notification.Action; 76 // The user has entered a geofence - post a notification! 86 * Deletes the check-in notification when the DataItem is deleted. 88 * notification to cancel (in this case, there is at most 1 notification). 98 * Posts a local notification for the given geofence id, with an option to check in. 100 * @param dataItemUri The Uri for the DataItem that triggered this notification. Used to delete 101 * this DataItem when the notification is dismissed. 104 // Use the geofenceId to determine the title and background of the check-in notification 135 Notification notification = new Notification.Builder(this) local [all...] |
/development/samples/browseable/Geofencing/Wearable/src/com.example.android.wearable.geofencing/ |
HomeListenerService.java | 27 import android.app.Notification; 28 import android.app.Notification.Action; 76 // The user has entered a geofence - post a notification! 86 * Deletes the check-in notification when the DataItem is deleted. 88 * notification to cancel (in this case, there is at most 1 notification). 98 * Posts a local notification for the given geofence id, with an option to check in. 100 * @param dataItemUri The Uri for the DataItem that triggered this notification. Used to delete 101 * this DataItem when the notification is dismissed. 104 // Use the geofenceId to determine the title and background of the check-in notification 135 Notification notification = new Notification.Builder(this) local [all...] |
/external/chromium_org/chrome/browser/sync/ |
sync_error_notifier_ash_unittest.cc | 10 #include "chrome/browser/notifications/notification.h" 23 #include "ui/message_center/notification.h" 44 // Notification ID corresponding to kProfileSyncNotificationId + kTestAccountId. 158 // If there is an error we should see a notification. 159 const Notification* notification = notification_ui_manager_-> local 162 ASSERT_TRUE(notification); 163 ASSERT_FALSE(notification->title().empty()); 164 ASSERT_FALSE(notification->title().empty()); 165 ASSERT_EQ((size_t)1, notification->buttons().size()) [all...] |