Home
last modified time | relevance | path

Searched refs:mContentIntent (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationActivityStarterTest.java130 private PendingIntent mContentIntent; field in StatusBarNotificationActivityStarterTest
151 when(mContentIntent.isActivity()).thenReturn(true); in setUp()
152 when(mContentIntent.getCreatorUserHandle()).thenReturn(UserHandle.of(1)); in setUp()
153 when(mContentIntent.getIntent()).thenReturn(mContentIntentInner); in setUp()
163 sbn.getNotification().contentIntent = mContentIntent; in setUp()
169 bubbleSbn.getNotification().contentIntent = mContentIntent; in setUp()
243 sbn.getNotification().contentIntent = mContentIntent; in testOnNotificationClicked_keyGuardShowing()
255 verify(mContentIntent).sendAndReturnResult( in testOnNotificationClicked_keyGuardShowing()
296 verifyZeroInteractions(mContentIntent); in testOnNotificationClicked_bubble_noContentIntent_noKeyGuard()
326 verifyZeroInteractions(mContentIntent); in testOnNotificationClicked_bubble_noContentIntent_keyGuardShowing()
[all …]
/frameworks/base/core/java/android/app/
DNotification.java10690 private PendingIntent mContentIntent; field in Notification.Builder.TvExtender
10713 mContentIntent = bundle.getParcelable(EXTRA_CONTENT_INTENT); in TvExtender()
10730 if (mContentIntent != null) { in extend()
10731 bundle.putParcelable(EXTRA_CONTENT_INTENT, mContentIntent); in extend()
10789 mContentIntent = intent; in setContentIntent()
10800 return mContentIntent; in getContentIntent()