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

/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/telephony/src/java/com/google/android/mms/pdu/
H A DPduPersister.java1058 HashSet<String> recipients = new HashSet<String>();
1077 recipients.add(v.getString());
1083 if (!recipients.isEmpty()) {
1084 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...]
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java109 * that use the new Chips UI for addressing a message to recipients.
729 // Don't draw photos for recipients that have been typed in OR generated on the fly.
981 * Set whether to shrink the recipients field such that at most
982 * one line of recipients chips are shown when the field loses
983 * focus. By default, the number of displayed recipients will be
1093 // There are too many recipients to look up, so just fall back
2052 DrawableRecipientChip[] recipients = getSortedRecipients();
2054 if (recipients == null || recipients.length <= CHIP_LIMIT) {
2059 int numRecipients = recipients
2751 processReplacements(final List<DrawableRecipientChip> recipients, final List<DrawableRecipientChip> replacements) argument
[all...]
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java1689 * A string encoding of the recipient IDs of the recipients of
1792 Set<String> recipients = new HashSet<String>();
1794 recipients.add(recipient);
1795 return getOrCreateThreadId(context, recipients);
1799 * Given the recipients list and subject of an unsaved message,
1804 * <p>Find the thread ID of the same set of recipients (in any order,
1810 Context context, Set<String> recipients) {
1813 for (String recipient : recipients) {
1838 Rlog.e(TAG, "getOrCreateThreadId failed with " + recipients.size() + " recipients");
1809 getOrCreateThreadId( Context context, Set<String> recipients) argument
[all...]

Completed in 131 milliseconds