Searched defs:recipients (Results 1 - 4 of 4) sorted by path

/frameworks/base/telephony/java/android/telephony/
H A DTelephony.java1775 * A string encoding of the recipient IDs of the recipients of
1877 Set<String> recipients = new HashSet<String>();
1879 recipients.add(recipient);
1880 return getOrCreateThreadId(context, recipients);
1884 * Given the recipients list and subject of an unsaved message,
1889 * <p>Find the thread ID of the same set of recipients (in any order,
1894 Context context, Set<String> recipients) {
1897 for (String recipient : recipients) {
1922 Rlog.e(TAG, "getOrCreateThreadId failed with " + recipients.size() + " recipients");
1893 getOrCreateThreadId( Context context, Set<String> recipients) argument
[all...]
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2CaptureCallbackSplitter.java38 * @param recipients The listeners to notify. Any {@code null} passed here
41 public Camera2CaptureCallbackSplitter(CaptureCallback... recipients) { argument
42 for (CaptureCallback listener : recipients) {
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java113 * that use the new Chips UI for addressing a message to recipients.
1002 // Don't draw photos for recipients that have been typed in OR generated on the fly.
1288 * Set whether to shrink the recipients field such that at most
1289 * one line of recipients chips are shown when the field loses
1290 * focus. By default, the number of displayed recipients will be
1400 // There are too many recipients to look up, so just fall back
2436 DrawableRecipientChip[] recipients = getSortedRecipients();
2438 if (recipients == null || recipients.length <= CHIP_LIMIT) {
2443 int numRecipients = recipients
3161 processReplacements(final List<DrawableRecipientChip> recipients, final List<DrawableRecipientChip> replacements) argument
[all...]
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduPersister.java1057 HashSet<String> recipients = new HashSet<String>();
1076 recipients.add(v.getString());
1082 if (!recipients.isEmpty()) {
1083 long threadId = Threads.getOrCreateThreadId(mContext, recipients);
1232 * @param createThreadId if true, this function may create a thread id for the recipients
1233 * @param groupMmsEnabled if true, all of the recipients addressed in the PDU will be used
1334 HashSet<String> recipients = new HashSet<String>();
1346 loadRecipients(PduHeaders.FROM, recipients, addressMap, false);
1349 // message with the thread composed of all the recipients -- all but our own
1355 loadRecipients(PduHeaders.TO, recipients, addressMa
1470 loadRecipients(int addressType, HashSet<String> recipients, HashMap<Integer, EncodedStringValue[]> addressMap, boolean excludeMyNumber) argument
[all...]

Completed in 172 milliseconds