HomeSort by relevance Sort by last modified time
    Searched refs:recipients (Results 1 - 25 of 41) 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"
  /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
  /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, ";");
RecipientListActivity.java 47 * Display a list of recipients for a group conversation. This activity expects to receive a
120 ContactList recipients) {
121 super(context, resource, recipients);
ConversationList.java 660 ContactList recipients = conv.getRecipients();
661 menu.setHeaderTitle(recipients.formatNames(","));
668 if (recipients.size() == 1) {
670 if (recipients.get(0).existsInDatabase()) {
990 ContactList recipients = conv.getRecipients(); local
    [all...]
  /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/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))
HtmlPrintTemplates.java 81 String recipients, String bodyHtml, String attachments) {
82 append(mMessage, senderName, senderAddress, date, recipients, bodyHtml, attachments);
  /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());
  /frameworks/opt/chips/src/com/android/ex/chips/
RecipientEditTextView.java 109 * 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.
2052 DrawableRecipientChip[] recipients = getSortedRecipients(); local
2109 DrawableRecipientChip[] recipients = getSortedRecipients(); local
2683 final ArrayList<DrawableRecipientChip> recipients = local
    [all...]
  /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/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/com/google/android/mms/pdu/
PduPersister.java 1058 HashSet<String> recipients = new HashSet<String>(); local
1334 HashSet<String> recipients = new HashSet<String>(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
ComposeActivity.java 702 // original sender and recipients if user switches "reply <-> reply-all".
2538 final List<String> recipients = Lists.newArrayList(); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsMessagingDemo.java 157 private void sendMessage(final String recipients, final String subject, final String text) {
168 final byte[] pdu = buildPdu(MmsMessagingDemo.this, recipients, subject, text);
333 private static byte[] buildPdu(Context context, String recipients, String subject,
343 EncodedStringValue.encodeStrings(recipients.split(" "));
  /external/chromium_org/components/invalidation/
push_client_channel.cc 66 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
  /frameworks/opt/telephony/src/java/android/provider/
Telephony.java 1792 Set<String> recipients = new HashSet<String>(); local
    [all...]

Completed in 1285 milliseconds

1 2