HomeSort by relevance Sort by last modified time
    Searched refs:notification (Results 1 - 25 of 1309) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/main/java/org/junit/runner/notification/
package-info.java 6 package org.junit.runner.notification
StoppedByUserException.java 1 package org.junit.runner.notification;
7 * @see org.junit.runner.notification.RunNotifier
  /frameworks/base/core/java/android/service/notification/
IStatusBarNotificationHolder.aidl 17 package android.service.notification;
19 import android.service.notification.StatusBarNotification;
Adjustment.aidl 17 package android.service.notification;
Condition.aidl 17 package android.service.notification;
NotificationRankingUpdate.aidl 17 package android.service.notification;
NotificationStats.aidl 17 package android.service.notification;
NotifyingApp.aidl 17 package android.service.notification;
SnoozeCriterion.aidl 17 package android.service.notification;
StatusBarNotification.aidl 17 package android.service.notification;
IConditionListener.aidl 17 package android.service.notification;
20 import android.service.notification.Condition;
ZenModeConfig.aidl 17 package android.service.notification;
IConditionProvider.aidl 17 package android.service.notification;
20 import android.service.notification.Condition;
  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/mqueue_h/
4-1-buildonly.c 13 struct sigevent *notification; local
16 err = mq_notify(mqdes, notification);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
AboveShelfChangedListener.java 17 package com.android.systemui.statusbar.notification;
20 * A listener for when the above shelf state of notification changes
InflationException.java 17 package com.android.systemui.statusbar.notification;
VisibilityLocationProvider.java 17 package com.android.systemui.statusbar.notification;
22 * An object that can determine the visibility of a Notification.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
TransformableView.java 19 import com.android.systemui.statusbar.notification.TransformState;
43 * @param notification the view to transform to
45 void transformTo(TransformableView notification, Runnable endRunnable);
50 * @param notification the view to transform to
53 void transformTo(TransformableView notification, float transformationAmount);
58 * @param notification the view to transform from
60 void transformFrom(TransformableView notification);
65 * @param notification the view to transform from
68 void transformFrom(TransformableView notification, float transformationAmount);
NotificationUpdateHandler.java 19 import android.service.notification.NotificationListenerService;
20 import android.service.notification.StatusBarNotification;
23 * Interface for accepting notification updates from {@link NotificationListener}.
27 * Add a new notification and update the current notification ranking map.
29 * @param notification Notification to add
32 void addNotification(StatusBarNotification notification,
36 * Remove a notification and update the current notification ranking map
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
RankingHandler.java 16 package com.android.server.notification;
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowNotificationBuilderTest.java 9 import android.app.Notification;
23 private final Notification.Builder builder = new Notification.Builder(RuntimeEnvironment.application);
27 Notification notification = builder.setContentTitle("Hello").build(); local
28 assertThat(shadowOf(notification).getContentTitle().toString()).isEqualTo("Hello");
33 Notification notification = builder.build(); local
34 assertThat(shadowOf(notification).isOngoing()).isFalse();
39 Notification notification = builder.setOngoing(true).build() local
46 Notification notification = builder.setWhen(100).setShowWhen(true).build(); local
54 Notification notification = builder.setShowWhen(false).build(); local
61 Notification notification = builder.setContentText("Hello Text").build(); local
68 Notification notification = builder.setTicker("My ticker").build(); local
76 Notification notification = builder.build(); local
83 Notification notification = builder.setSmallIcon(R.drawable.an_image).build(); local
90 Notification notification = builder.setWhen(11L).build(); local
97 Notification notification = builder.setProgress(36, 57, true).build(); local
104 Notification notification = builder.setProgress(50, 10, false).build(); local
114 Notification notification = builder.setUsesChronometer(true).setWhen(10).setShowWhen(true).build(); local
122 Notification notification = builder.setUsesChronometer(false).setWhen(10).setShowWhen(true).build(); local
129 Notification notification = builder.setContentTitle(null).build(); local
136 Notification notification = builder.setContentText(null).build(); local
143 Notification notification = builder.setTicker(null).build(); local
150 Notification notification = builder.setContentInfo(null).build(); local
159 Notification notification = builder.addAction(0, "Action", action).build(); local
166 Notification notification = builder.setStyle(new Notification.BigTextStyle(builder) local
184 Notification notification = builder.setStyle(new Notification.BigPictureStyle(builder) local
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/notification/
NotificationManagerUtils.java 17 package com.android.dialer.notification;
21 import android.service.notification.StatusBarNotification;
33 for (StatusBarNotification notification : notificationManager.getActiveNotifications()) {
34 if (TextUtils.equals(groupKey, notification.getNotification().getGroup())) {
35 notificationManager.cancel(notification.getTag(), notification.getId());
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_notify/
8-1.c 37 struct sigevent notification; local
41 notification.sigev_notify = SIGEV_SIGNAL;
42 notification.sigev_signo = SIGUSR1;
44 if (mq_notify(mqdes, &notification) == -1) {
  /packages/apps/Dialer/java/com/android/dialer/notification/missedcalls/
MissedCallConstants.java 17 package com.android.dialer.notification.missedcalls;
22 /** Prefix used to generate a unique tag for each missed call notification. */
28 /** Tag for the group summary notification. */
  /hardware/interfaces/gnss/1.0/default/
GnssNi.cpp 51 void GnssNi::niNotifyCb(GpsNiNotification* notification) {
57 if (notification == nullptr) {
63 .notificationId = notification->notification_id,
64 .niType = static_cast<IGnssNiCallback::GnssNiType>(notification->ni_type),
65 .notifyFlags = notification->notify_flags,
66 .timeoutSec = static_cast<uint32_t>(notification->timeout),
68 static_cast<IGnssNiCallback::GnssUserResponseType>(notification->default_response),
69 .requestorId = notification->requestor_id,
70 .notificationMessage = notification->text,
72 static_cast<IGnssNiCallback::GnssNiEncodingType>(notification->requestor_id_encoding)
    [all...]

Completed in 936 milliseconds

1 2 3 4 5 6 7 8 91011>>