HomeSort by relevance Sort by last modified time
    Searched refs:mNotifications (Results 1 - 9 of 9) sorted by null

  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationShowcaseActivity.java 131 private ArrayList<Notification> mNotifications = new ArrayList<Notification>();
262 bigtextId = mNotifications.size();
263 mNotifications.add(makeBigTextNotification(this, 0, bigtextId,
266 uploadId = mNotifications.size();
268 mNotifications.add(makeUploadNotification(this, 10, uploadId, uploadWhen));
270 mNotifications.add(new NotificationCompat.Builder(this)
282 mNotifications.add(new NotificationCompat.Builder(this)
290 mNotifications.add(new NotificationCompat.Builder(this)
308 mNotifications.add(new NotificationCompat.BigPictureStyle(
334 mNotifications.add(new NotificationCompat.InboxStyle
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/photos/data/
PhotoProviderTest.java 64 private NotificationWatcher mNotifications = new NotificationWatcher();
75 provider.setMockNotification(mNotifications);
97 mNotifications.reset();
152 assertTrue(mNotifications.isNotified(Photos.CONTENT_URI));
153 assertTrue(mNotifications.isNotified(Metadata.CONTENT_URI));
154 assertTrue(mNotifications.isNotified(albumUri));
155 assertEquals(3, mNotifications.notificationCount());
165 assertTrue(mNotifications.isNotified(Photos.CONTENT_URI));
166 assertTrue(mNotifications.isNotified(Metadata.CONTENT_URI));
167 assertTrue(mNotifications.isNotified(Albums.CONTENT_URI))
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebIconDatabase.h 71 Vector<WTF::String> mNotifications;
WebIconDatabase.cpp 95 mNotifications.append(pageURL);
162 queue.swap(mNotifications);
  /frameworks/base/services/java/com/android/server/
StatusBarManagerService.java 63 HashMap<IBinder,StatusBarNotification> mNotifications
430 synchronized (mNotifications) {
431 for (Map.Entry<IBinder,StatusBarNotification> e: mNotifications.entrySet()) {
489 synchronized (mNotifications) {
491 mNotifications.put(key, notification);
503 synchronized (mNotifications) {
504 if (!mNotifications.containsKey(key)) {
507 mNotifications.put(key, notification);
518 synchronized (mNotifications) {
519 final StatusBarNotification n = mNotifications.remove(key)
    [all...]
  /hardware/libhardware/tests/camera2/
camera2_utils.cpp 261 if (mNotifications.size() == 0) return BAD_VALUE;
270 while (mNotifications.size() == 0) {
278 return mNotifications.size();
285 *msg_type = mNotifications.begin()->msg_type;
286 *ext1 = mNotifications.begin()->ext1;
287 *ext2 = mNotifications.begin()->ext2;
288 *ext3 = mNotifications.begin()->ext3;
289 mNotifications.erase(mNotifications.begin());
298 mNotifications.push_back(Notification(msg_type, ext1, ext2, ext3))
    [all...]
camera2_utils.h 145 List<Notification> mNotifications;
camera2.cpp 216 mNotifications);
342 NotifierListener mNotifications;
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppNotification.java 92 private HashMap<String, NotificationItem> mNotifications;
137 mNotifications = new HashMap<String, NotificationItem>();
239 mNotifications.clear();
260 if (mNotifications.containsKey(batchID)) {
281 mNotifications.put(batchID, item);
290 for (NotificationItem item : mNotifications.values()) {

Completed in 786 milliseconds