HomeSort by relevance Sort by last modified time
    Searched refs:recipients (Results 1 - 25 of 37) sorted by null

1 2

  /external/valgrind/main/nightly/conf/
cellbuzz-cross.sendmail 7 recipients="valgrind-developers@lists.sourceforge.net"
8 #recipients="bvanassche@acm.org"
11 mutt -s "$1" -a "$3.gz" ${recipients} < "$2"
14 mutt -s "$1" ${recipients} < "$2"
cellbuzz-native.sendmail 7 recipients="valgrind-developers@lists.sourceforge.net"
8 #recipients="bvanassche@acm.org"
11 mutt -s "$1" -a "$3.gz" ${recipients} < "$2"
14 mutt -s "$1" ${recipients} < "$2"
  /packages/apps/Mms/src/com/android/mms/ui/
NoConfirmationSendService.java 63 String recipients = Conversation.getRecipients(intentUri); local
65 if (TextUtils.isEmpty(recipients)) {
78 String[] dests = TextUtils.split(recipients, ";");
RecipientListActivity.java 46 * Display a list of recipients for a group conversation. This activity expects to receive a
119 ContactList recipients) {
120 super(context, resource, recipients);
ConversationList.java 636 ContactList recipients = conv.getRecipients();
637 menu.setHeaderTitle(recipients.formatNames(","));
644 if (recipients.size() == 1) {
646 if (recipients.get(0).existsInDatabase()) {
956 ContactList recipients = conv.getRecipients(); local
    [all...]
ComposeMessageActivity.java 163 * address String The addresses of the recipients in current conversation.
279 private RecipientsEditor mRecipientsEditor; // UI control for editing recipients
280 private ImageButton mRecipientsPicker; // UI control for recipients picker
293 // think the message list is empty, thus show the recipients
300 private int mLastRecipientCount; // Used for warning the user on too many recipients.
345 private final static String RECIPIENTS = "recipients";
728 // The recipients editor is still open. Make sure we use what's showing there
1780 ContactList recipients = getRecipients(); local
2625 ContactList recipients = getRecipients(); local
3869 String recipients = bundle.getString(RECIPIENTS); local
4244 ContactList recipients = mConversation.getRecipients(); local
    [all...]
  /external/chromium_org/jingle/notifier/listener/
push_notifications_send_update_task.cc 65 const RecipientList& recipients = notification.recipients; local
66 for (size_t i = 0; i < recipients.size(); ++i) {
67 const Recipient& recipient = recipients[i];
notification_defines.cc 64 RecipientListsEqual(recipients, other.recipients);
non_blocking_push_client_unittest.cc 96 notification.recipients.resize(10);
97 notification.recipients[0].to = "to";
98 notification.recipients[9].user_specific_data = "user_specific_data";
notification_defines.h 54 // Recipients for this notification (may be empty).
55 RecipientList recipients; member in struct:notifier::Notification
  /external/chromium_org/chrome/test/functional/
chromeos_txt_msg_functional.py 42 def _SendMail(self, mail_server, sender, recipients,
49 recipients: Recipients email address.
54 msg['To'] = recipients
58 mail_server.sendmail(sender, recipients, msg.as_string())
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 88 private ContactList mRecipients; // The current set of recipients.
131 * Create a new conversation with no recipients. {@link #setRecipients} can
166 public static Conversation get(Context context, ContactList recipients, boolean allowQuery) {
168 Log.v(TAG, "Conversation get by recipients: " + recipients.serialize());
170 // If there are no recipients in the list, make a new conversation.
171 if (recipients.size() < 1) {
175 Conversation conv = Cache.get(recipients);
179 long threadId = getOrCreateThreadId(context, recipients);
183 if (!conv.getRecipients().equals(recipients)) {
229 String recipients = PhoneNumberUtils.replaceUnicodeDigits(getRecipients(uri)) local
608 HashSet<String> recipients = new HashSet<String>(); local
927 ContactList recipients = ContactList.getByIds(recipientIds, allowQuery); local
1325 ContactList recipients = ContactList.getByIds(c.getString(RECIPIENT_IDS), false); local
    [all...]
WorkingMessage.java 91 public static final String EXTRA_SMS_RECIPIENTS = "android.mms.extra.RECIPIENTS";
766 // Make sure our working set of recipients is resolved
777 * Resolve the temporary working set of recipients to a ContactList.
781 ContactList recipients = ContactList.getByNumbers(mWorkingRecipients, false); local
782 mConversation.setRecipients(recipients); // resets the threadId to zero
783 setHasMultipleRecipients(recipients.size() > 1, true);
793 ContactList recipients = ContactList.getByNumbers(mWorkingRecipients, false); local
794 return recipients.serialize();
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
Mailer.java 38 StringTokenizer recipients = new StringTokenizer(recipientList, ","); local
39 Address[] addresses = new Address[recipients.countTokens()];
41 while (recipients.hasMoreTokens()) {
43 addresses[i++] = new InternetAddress(recipients.nextToken());
  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientEditTextView.java 105 * that use the new Chips UI for addressing a message to recipients.
613 // Don't draw photos for recipients that have been typed in OR generated on the fly.
803 * Set whether to shrink the recipients field such that at most
804 * one line of recipients chips are shown when the field loses
805 * focus. By default, the number of displayed recipients will be
1875 DrawableRecipientChip[] recipients = getSortedRecipients(); local
1932 DrawableRecipientChip[] recipients = getSortedRecipients(); local
2510 final ArrayList<DrawableRecipientChip> recipients = local
    [all...]
  /packages/apps/Mms/tests/src/com/android/mms/
RecyclerTest.java 47 * example: adb push ~/recipients /data/data/com.android.mms/files
55 * example: adb push ~/recipients /data/data/com.android.mms/files
106 // Read in list of recipients
109 Log.v(TAG, "Loading recipients");
110 FileInputStream recipients = context.openFileInput("recipients"); local
112 while ((c = recipients.read()) != -1) {
123 recipients.close();
124 Log.v(TAG, "Loaded recipients: " + mRecipients.size());
126 Log.e(TAG, "can't open recipients file at /data/data/com.android.mms/files/recipients")
    [all...]
  /packages/apps/Mms/tests/src/com/android/mms/ui/
LongThreadTest.java 48 * example: adb push ~/recipients /data/data/com.android.mms/files
110 // Read in list of recipients
113 Log.v(TAG, "Loading recipients");
114 FileInputStream recipients = mActivity.openFileInput("recipients"); local
116 while ((c = recipients.read()) != -1) {
127 recipients.close();
128 Log.v(TAG, "Loaded recipients: " + mRecipients.size());
130 Log.e(TAG, "can't open recipients file at /data/data/com.android.mms/files/recipients");
    [all...]
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java 1580 Set<String> recipients = new HashSet<String>(); local
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduPersister.java 1052 HashSet<String> recipients = new HashSet<String>(); local
1328 HashSet<String> recipients = new HashSet<String>(); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapContentObserver.java 490 Set<String> recipients = new HashSet<String>(); local
491 recipients.addAll(Arrays.asList(address));
492 updateThreadIdMms(uri, Telephony.Threads.getOrCreateThreadId(mContext, recipients));
547 Set<String> recipients = new HashSet<String>(); local
548 recipients.addAll(Arrays.asList(address));
549 updateThreadIdSms(uri, Telephony.Threads.getOrCreateThreadId(mContext, recipients));
705 /* If multiple recipients return handle of last */
796 Set<String> recipients = new HashSet<String>(); local
797 recipients.addAll(Arrays.asList(to_address));
798 values.put("thread_id", Telephony.Threads.getOrCreateThreadId(mContext, recipients));
    [all...]
  /external/chromium_org/sync/notifier/
push_client_channel.cc 135 notification.recipients.push_back(recipient);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtplib.py 107 'recipients', which is a dictionary of exactly the same sort as
111 def __init__(self, recipients):
112 self.recipients = recipients
113 self.args = (recipients,)
681 SMTPRecipientsRefused The server rejected ALL recipients
732 # the server refused all our recipients
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtplib.py 107 'recipients', which is a dictionary of exactly the same sort as
111 def __init__(self, recipients):
112 self.recipients = recipients
113 self.args = (recipients,)
681 SMTPRecipientsRefused The server rejected ALL recipients
732 # the server refused all our recipients
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsProvider.java 224 AUTHORITY, "conversations/#/recipients",
337 List<String> recipients = uri.getQueryParameters("recipient"); local
339 cursor = getThreadId(recipients);
620 * recipients IDs. If no thread exists with this ID, create
624 private synchronized Cursor getThreadId(List<String> recipients) {
625 Set<Long> addressIds = getAddressIds(recipients);
652 // Find the thread with the given recipients
656 // No thread with those recipients exists, so create the thread.
659 Log.d(LOG_TAG, "getThreadId: create new thread_id for recipients " +
660 /*recipients*/ "xxxxxxxx")
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageHeaderView.java 731 public void append(String[] recipients, int headingRes) {
733 CharSequence recipientList = getSummaryTextForHeading(headingRes, recipients, addLimit);
743 mRecipientCount += Math.min(addLimit, recipients.length);
    [all...]

Completed in 1178 milliseconds

1 2