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

1 2 3 4 5 6 7 8 91011>>

  /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"
  /external/smack/src/org/jivesoftware/smackx/
MultipleRecipientInfo.java 28 * MultipleRecipientInfo keeps information about the multiple recipients extension included
43 * that were the primary recipients of the packet.
45 * @return list of primary recipients of the packet.
53 * that were the secondary recipients of the packet.
55 * @return list of secondary recipients of the packet.
64 * can be sent to any or all recipients. Otherwise, the user should join the specified room
89 * can be sent to any or all recipients.
MultipleRecipientManager.java 38 * A MultipleRecipientManager allows to send packets to multiple recipients by making use of
40 * It also allows to send replies to packets that were sent to multiple recipients.
53 * Sends the specified packet to the list of specified recipients using the
60 * @param packet the packet to send to the list of recipients.
76 * Sends the specified packet to the list of specified recipients using the
83 * @param packet the packet to send to the list of recipients.
120 * Sends a reply to a previously received packet that was sent to multiple recipients. Before
125 * @param original the previously received packet that was sent to multiple recipients.
127 * @throws XMPPException if the original message was not sent to multiple recipients, or the
153 // Send reply to multiple recipients
    [all...]
  /external/chromium_org/jingle/notifier/listener/
notification_defines.h 54 // Recipients for this notification (may be empty).
55 RecipientList recipients; member in struct:notifier::Notification
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";
  /frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
Camera2CaptureCallbackSplitter.java 38 * @param recipients The listeners to notify. Any {@code null} passed here
41 public Camera2CaptureCallbackSplitter(CaptureCallback... recipients) {
42 for (CaptureCallback listener : recipients) {
  /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/chips/res/values/
strings.xml 17 <!-- Text displayed when the recipientedittextview is not focused. Displays the total number of recipients since the field is shrunk to just display a portion -->
20 <!-- Text displayed when the user long presses on a chip to copy the recipients email address.
  /packages/apps/UnifiedEmail/src/com/android/mail/print/
PrintUtils.java 176 final StringBuilder recipients = new StringBuilder(); local
180 buildEmailDiv(res, recipients, replyTo, REPLY_TO_DIV_START, DIV_END,
191 recipients.append(DIV_START).append(res.getString(R.string.draft_heading))
194 buildEmailDiv(res, recipients, to, DIV_START, DIV_END,
200 buildEmailDiv(res, recipients, cc, DIV_START, DIV_END,
205 buildEmailDiv(res, recipients, bcc, DIV_START, DIV_END,
208 return recipients.toString();
214 private static void buildEmailDiv(Resources res, StringBuilder recipients, String emailList,
217 recipients.append(divStart).append(res.getString(headingId))
  /packages/apps/Mms/src/com/android/mms/ui/
NoConfirmationSendService.java 70 String recipients = Conversation.getRecipients(intentUri); local
72 if (TextUtils.isEmpty(recipients)) {
85 String[] dests = TextUtils.split(recipients, ";");
  /external/llvm/lib/Target/ARM/
LICENSE.TXT 22 Agreement, ARM hereby grants to you and to recipients of the Software
29 Agreement, ARM hereby grants you and to recipients of the Software
  /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...]
  /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());
  /external/lldb/utils/test/
ras.py 93 default=[], dest='recipients',
96 if not opts.sender or not opts.recipients:
112 outer['To'] = COMMASPACE.join(opts.recipients)
171 s.sendmail(opts.sender, opts.recipients, composed)
  /packages/services/Mms/res/xml-mcc310-mnc070/
mms_config.xml 29 <!-- Maximum number of recipients allowed per message. Use a value of -1
  /packages/services/Mms/res/xml-mcc310-mnc170/
mms_config.xml 29 <!-- Maximum number of recipients allowed per message. Use a value of -1
  /packages/services/Mms/res/xml-mcc310-mnc380/
mms_config.xml 34 <!-- Maximum number of recipients allowed per message. Use a value of -1
  /packages/services/Mms/res/xml-mcc310-mnc410/
mms_config.xml 29 <!-- Maximum number of recipients allowed per message. Use a value of -1
  /packages/services/Mms/res/xml-mcc310-mnc560/
mms_config.xml 29 <!-- Maximum number of recipients allowed per message. Use a value of -1
  /packages/services/Mms/res/xml-mcc310-mnc680/
mms_config.xml 29 <!-- Maximum number of recipients allowed per message. Use a value of -1
  /packages/services/Mms/res/xml-mcc311-mnc180/
mms_config.xml 34 <!-- Maximum number of recipients allowed per message. Use a value of -1

Completed in 708 milliseconds

1 2 3 4 5 6 7 8 91011>>