HomeSort by relevance Sort by last modified time
    Searched refs:mNotifications (Results 1 - 8 of 8) 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...]
  /frameworks/base/services/java/com/android/server/
StatusBarManagerService.java 63 HashMap<IBinder,StatusBarNotification> mNotifications
401 synchronized (mNotifications) {
402 for (Map.Entry<IBinder,StatusBarNotification> e: mNotifications.entrySet()) {
460 synchronized (mNotifications) {
462 mNotifications.put(key, notification);
474 synchronized (mNotifications) {
475 if (!mNotifications.containsKey(key)) {
478 mNotifications.put(key, notification);
489 synchronized (mNotifications) {
490 final StatusBarNotification n = mNotifications.remove(key)
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebIconDatabase.h 71 Vector<WTF::String> mNotifications;
WebIconDatabase.cpp 95 mNotifications.append(pageURL);
162 queue.swap(mNotifications);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadNotification.java 42 HashMap <String, NotificationItem> mNotifications;
106 mNotifications = new HashMap<String, NotificationItem>();
119 mNotifications.clear();
135 if (mNotifications.containsKey(packageName)) {
136 item = mNotifications.get(packageName);
144 mNotifications.put(packageName, item);
154 for (NotificationItem item : mNotifications.values()) {
  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
AlertServiceTest.java 257 NotificationInstance[] mNotifications;
268 mNotifications = new NotificationInstance[maxNotifications + 1];
272 mNotifications[notificationId] = new NotificationInstance(alertId, highPriority);
276 mNotifications[notificationId] = new NotificationInstance(alertIds, priority);
280 assertEquals(mNotifications[id].mPriority, nw.mNotification.priority);
282 NotificationInstance expected = mNotifications[id];
310 Arrays.fill(mNotifications, null);
318 mDone = new boolean[mNotifications.length];
324 assertNull("Unexpected cancel for id " + id, mNotifications[id]);
334 for (int i = 0; i < mNotifications.length; i++)
    [all...]
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
EmulatorConnection.java 309 private Vector<String> mNotifications = new Vector<String>();
350 mNotifications.add(msg);
401 mNotifications.clear();
494 if (!mNotifications.isEmpty()) {
495 mOut = ByteBuffer.wrap(mNotifications.remove(0).getBytes());
    [all...]
  /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 657 milliseconds