Home | History | Annotate | Download | only in utils

Lines Matching refs:senders

897                         // The title of a single conversation is the list of senders.
1013 final ArrayList<SpannableString> senders = new ArrayList<SpannableString>();
1020 SendersView.format(context, conversationInfo, "", maxLength, senders, null, null, account,
1023 return ellipsizeStyledSenders(context, senders);
1091 * @param senders Sender of the new message that triggered the notification.
1098 String senders, String subject, String snippet) {
1106 if (TextUtils.isEmpty(senders)) {
1107 // If the senders are empty, just use the subject/snippet.
1110 // If the subject/snippet is empty, just use the senders.
1111 final SpannableString spannableString = new SpannableString(senders);
1112 spannableString.setSpan(notificationPrimarySpan, 0, senders.length(), 0);
1121 // senders is already individually unicode wrapped so it does not need to be done here
1123 senders,
1131 (isOrderReversed ? instantiatedString.lastIndexOf(senders) :
1132 instantiatedString.indexOf(senders));
1137 primaryOffset, primaryOffset + senders.length(), 0);