Home
last modified time | relevance | path

Searched refs:mNotificationBuilder (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DSbnBuilder.java40 @Nullable private Notification.Builder mNotificationBuilder; field in SbnBuilder
66 if (mNotificationBuilder != null) { in build()
67 notification = mNotificationBuilder.build(); in build()
127 mNotificationBuilder = null; in setNotification()
158 mNotificationBuilder = new Notification.Builder(context, mNotification); in modifyNotification()
160 } else if (mNotificationBuilder == null) { in modifyNotification()
161 mNotificationBuilder = new Notification.Builder(context); in modifyNotification()
164 return mNotificationBuilder; in modifyNotification()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/tv/
DTvPipNotificationController.java63 private final Notification.Builder mNotificationBuilder; field in TvPipNotificationController
83 mNotificationBuilder = new Notification.Builder(context, NOTIFICATION_CHANNEL) in TvPipNotificationController()
150 mNotificationBuilder in update()
154 mNotificationBuilder.setStyle(new Notification.BigPictureStyle() in update()
157 mNotificationBuilder.setStyle(null); in update()
160 mNotificationBuilder.build()); in update()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DCarrierServiceStateTrackerTest.java117 Notification.Builder mNotificationBuilder = new Notification.Builder(mContext); in testSendBothNotifications() local
123 doReturn(mNotificationBuilder).when(mSpyCarrierSST).getNotificationBuilder(any()); in testSendBothNotifications()
151 Notification.Builder mNotificationBuilder = new Notification.Builder(mContext); in testSendPrefNetworkNotification() local
155 doReturn(mNotificationBuilder).when(spyPrefNetworkNotification).getNotificationBuilder(); in testSendPrefNetworkNotification()
201 Notification.Builder mNotificationBuilder = new Notification.Builder(mContext); in testSendEmergencyNetworkNotification() local
202 doReturn(mNotificationBuilder).when(spyEmergencyNetworkNotification) in testSendEmergencyNetworkNotification()