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

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/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;
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;
  /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);
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationSignalExtractor.java 17 package com.android.server.notification;
24 * not be passed on to {@link android.service.notification.NotificationListenerService}s.
32 * Called once per notification that is posted or updated.
37 * update events to the {@link android.service.notification.NotificationListenerService}s.
39 public RankingReconsideration process(NotificationRecord notification);
RankingHandler.java 16 package com.android.server.notification;
NotificationIntrusivenessExtractor.java 17 package com.android.server.notification;
19 import android.app.Notification;
21 import android.service.notification.NotificationListenerService;
26 * This {@link com.android.server.notification.NotificationSignalExtractor} notices noisy
33 /** Length of time (in milliseconds) that an intrusive or noisy notification will stay at
43 if (DBG) Slog.d(TAG, "skipping empty notification");
48 final Notification notification = record.getNotification(); local
49 if ((notification.defaults & Notification.DEFAULT_VIBRATE) != 0 |
    [all...]
NotificationManagerInternal.java 17 package com.android.server.notification;
19 import android.app.Notification;
23 String tag, int id, Notification notification, int[] idReceived, int userId);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
NotificationBigPictureTemplateViewWrapper.java 17 package com.android.systemui.statusbar.notification;
19 import android.app.Notification;
23 import android.service.notification.StatusBarNotification;
29 * Wraps a notification containing a big picture template
39 public void notifyContentUpdated(StatusBarNotification notification) {
40 super.notifyContentUpdated(notification);
41 updateImageTag(notification);
44 private void updateImageTag(StatusBarNotification notification) {
45 final Bundle extras = notification.getNotification().extras;
46 Icon overRiddenIcon = extras.getParcelable(Notification.EXTRA_LARGE_ICON_BIG)
    [all...]
NotificationBigTextTemplateViewWrapper.java 17 package com.android.systemui.statusbar.notification;
20 import android.service.notification.StatusBarNotification;
28 * Wraps a notification containing a big text template
39 private void resolveViews(StatusBarNotification notification) {
44 public void notifyContentUpdated(StatusBarNotification notification) {
45 // Reinspect the notification. Before the super call, because the super call also updates
47 resolveViews(notification);
48 super.notifyContentUpdated(notification);
NotificationMediaTemplateViewWrapper.java 17 package com.android.systemui.statusbar.notification;
20 import android.service.notification.StatusBarNotification;
27 * Wraps a notification containing a media template
38 private void resolveViews(StatusBarNotification notification) {
43 public void notifyContentUpdated(StatusBarNotification notification) {
44 // Reinspect the notification. Before the super call, because the super call also updates
46 resolveViews(notification);
47 super.notifyContentUpdated(notification);
  /external/libweave/src/notification/
notification_parser.cc 5 #include "src/notification/notification_parser.h"
14 bool ParseCommandCreated(const base::DictionaryValue& notification,
18 if (!notification.GetDictionary("command", &command)) {
19 LOG(ERROR) << "COMMAND_CREATED notification is missing 'command' property";
28 bool ParseDeviceDeleted(const base::DictionaryValue& notification,
31 if (!notification.GetString("deviceId", &cloud_id)) {
32 LOG(ERROR) << "DEVICE_DELETED notification is missing 'deviceId' property";
42 bool ParseNotificationJson(const base::DictionaryValue& notification,
48 if (!notification.GetString("kind", &kind) || kind != "weave#notification") {
    [all...]
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/mac/
APPRTCViewController.h 15 - (void)windowWillClose:(NSNotification*)notification;
  /developers/build/prebuilts/gradle/LNotifications/Application/tests/src/com/example/android/lnotifications/
VisibilityMetadataFragmentTest.java 3 import android.app.Notification;
43 Notification notification = mFragment.createNotification(VisibilityMetadataFragment local
46 assertEquals(Notification.VISIBILITY_PUBLIC, notification.visibility);
47 assertEquals(R.drawable.ic_public_notification, notification.icon);
51 Notification notification = mFragment.createNotification(VisibilityMetadataFragment local
54 assertEquals(Notification.VISIBILITY_PRIVATE, notification.visibility)
59 Notification notification = mFragment.createNotification(VisibilityMetadataFragment local
    [all...]
HeadsUpNotificationFragmentTest.java 3 import android.app.Notification;
40 Notification notification = mFragment.createNotification(true); local
41 assertNotNull(notification.fullScreenIntent);
45 Notification notification = mFragment.createNotification(false); local
46 assertNull(notification.fullScreenIntent);
  /developers/samples/android/notification/LNotifications/Application/tests/src/com/example/android/lnotifications/
VisibilityMetadataFragmentTest.java 3 import android.app.Notification;
43 Notification notification = mFragment.createNotification(VisibilityMetadataFragment local
46 assertEquals(Notification.VISIBILITY_PUBLIC, notification.visibility);
47 assertEquals(R.drawable.ic_public_notification, notification.icon);
51 Notification notification = mFragment.createNotification(VisibilityMetadataFragment local
54 assertEquals(Notification.VISIBILITY_PRIVATE, notification.visibility)
59 Notification notification = mFragment.createNotification(VisibilityMetadataFragment local
    [all...]
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
MyNotificationListenerService.java 18 import android.app.Notification;
23 import android.service.notification.NotificationListenerService;
24 import android.service.notification.StatusBarNotification;
28 * NotificationListenerService implementation that executes the notification actions once they're
43 Log.v(TAG, "ignoring notification from a different package");
47 final Notification notification = sbn.getNotification(); local
48 if (notification.contentIntent != null) {
49 sender.send("content", notification.contentIntent);
51 if (notification.deleteIntent != null)
    [all...]
  /external/mockito/src/org/mockito/internal/runners/util/
FrameworkUsageValidator.java 8 import org.junit.runner.notification.Failure;
9 import org.junit.runner.notification.RunListener;
10 import org.junit.runner.notification.RunNotifier;

Completed in 498 milliseconds

1 2 3 4 5 6 7 8 91011>>