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

/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.java109 * that use the new Chips UI for addressing a message to recipients.
894 // Don't draw photos for recipients that have been typed in OR generated on the fly.
1139 * Set whether to shrink the recipients field such that at most
1140 * one line of recipients chips are shown when the field loses
1141 * focus. By default, the number of displayed recipients will be
1251 // There are too many recipients to look up, so just fall back
2215 DrawableRecipientChip[] recipients = getSortedRecipients();
2217 if (recipients == null || recipients.length <= CHIP_LIMIT) {
2222 int numRecipients = recipients
2939 processReplacements(final List<DrawableRecipientChip> recipients, final List<DrawableRecipientChip> replacements) argument
[all...]
/frameworks/opt/telephony/src/java/android/provider/
H A DTelephony.java1772 * A string encoding of the recipient IDs of the recipients of
1874 Set<String> recipients = new HashSet<String>();
1876 recipients.add(recipient);
1877 return getOrCreateThreadId(context, recipients);
1881 * Given the recipients list and subject of an unsaved message,
1886 * <p>Find the thread ID of the same set of recipients (in any order,
1891 Context context, Set<String> recipients) {
1894 for (String recipient : recipients) {
1919 Rlog.e(TAG, "getOrCreateThreadId failed with " + recipients.size() + " recipients");
1890 getOrCreateThreadId( Context context, Set<String> recipients) argument
[all...]
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduPersister.java1059 HashSet<String> recipients = new HashSet<String>();
1078 recipients.add(v.getString());
1084 if (!recipients.isEmpty()) {
1085 long threadId = Threads.getOrCreateThreadId(mContext, recipients);
1233 * @param createThreadId if true, this function may create a thread id for the recipients
1234 * @param groupMmsEnabled if true, all of the recipients addressed in the PDU will be used
1335 HashSet<String> recipients = new HashSet<String>();
1347 loadRecipients(PduHeaders.FROM, recipients, addressMap, false);
1350 // message with the thread composed of all the recipients -- all but our own
1356 loadRecipients(PduHeaders.TO, recipients, addressMa
1471 loadRecipients(int addressType, HashSet<String> recipients, HashMap<Integer, EncodedStringValue[]> addressMap, boolean excludeMyNumber) argument
[all...]

Completed in 193 milliseconds