Home
last modified time | relevance | path

Searched refs:isMissedCall (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/people/
DNotificationHelper.java72 boolean missedCall1 = isMissedCall(n1);
73 boolean missedCall2 = isMissedCall(n2);
104 public static boolean isMissedCall(NotificationEntry e) { in isMissedCall() method in NotificationHelper
106 && isMissedCall(e.getSbn().getNotification()); in isMissedCall()
110 public static boolean isMissedCall(Notification notification) { in isMissedCall() method in NotificationHelper
132 return isMissedCall(e) || hasContent(e); in isMissedCallOrHasContent()
153 boolean isMissedCall = isMissedCall(notification); in shouldMatchNotificationByUri()
154 if (!isMissedCall) { in shouldMatchNotificationByUri()
157 return isMissedCall; in shouldMatchNotificationByUri()
DPeopleSpaceUtils.java23 import static com.android.systemui.people.NotificationHelper.isMissedCall;
192 if (isMissedCall(notification)) { in getMessagesCount()
256 boolean isMissedCall = isMissedCall(notification); in augmentTileFromNotification()
260 if (!isMissedCall && ArrayUtils.isEmpty(messages)) { in augmentTileFromNotification()
270 CharSequence content = (isMissedCall && !hasMessageText) in augmentTileFromNotification()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/people/
DNotificationHelperTest.java23 import static com.android.systemui.people.NotificationHelper.isMissedCall;
172 assertFalse(isMissedCall(mNotificationEntry1)); in testIsMissedCall_notMissedCall()
177 assertTrue(isMissedCall(mMissedCallNotificationEntry)); in testIsMissedCall_missedCall()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/people/widget/
DPeopleSpaceWidgetManagerTest.java1676 boolean isMessagingStyle, boolean isMissedCall) { in createMessagingStyleNotification() argument
1693 if (isMissedCall) { in createMessagingStyleNotification()
1700 boolean isMessagingStyle, boolean isMissedCall) { in createMessagingStyleNotificationWithoutExtras() argument
1712 if (isMissedCall) { in createMessagingStyleNotificationWithoutExtras()
1720 boolean isMessagingStyle, boolean isMissedCall) { in createNotification() argument
1722 shortcutId, isMessagingStyle, isMissedCall); in createNotification()