Home | History | Annotate | Download | only in utils

Lines Matching defs:senders

1013                 // Track all senders to later tag them along with the digest notification
1132 // Tag main digest notification with the senders
1202 // Set of all unique senders for unseen messages
1256 // The title of a single conversation is the list of senders.
1334 * Iterates through all senders and adds their respective Uris to the notifications. Each Uri
1337 * @param senderAddressesSet List of unique senders to be tagged with the conversation
1364 final ArrayList<SpannableString> senders = new ArrayList<>();
1371 SendersView.format(context, conversationInfo, "", maxLength, senders, null, null, account,
1375 return ellipsizeStyledSenders(context, senders);
1443 * @param senders Sender of the new message that triggered the notification.
1450 String senders, String subject, String snippet) {
1458 if (TextUtils.isEmpty(senders)) {
1459 // If the senders are empty, just use the subject/snippet.
1462 // If the subject/snippet is empty, just use the senders.
1463 final SpannableString spannableString = new SpannableString(senders);
1464 spannableString.setSpan(notificationPrimarySpan, 0, senders.length(), 0);
1473 // senders is already individually unicode wrapped so it does not need to be done here
1475 senders,
1483 (isOrderReversed ? instantiatedString.lastIndexOf(senders) :
1484 instantiatedString.indexOf(senders));
1489 primaryOffset, primaryOffset + senders.length(), 0);