Searched defs:recipient (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Mms/src/com/android/mms/ui/
H A DDeliveryReportItem.java25 String recipient; field in class:DeliveryReportItem
29 public DeliveryReportItem(String recipient, String status, String deliveryDate) { argument
30 this.recipient = recipient;
H A DDeliveryReportListItem.java32 * This class displays the status for a single recipient of a message. It is used in
49 mRecipientView = (TextView) findViewById(R.id.recipient);
59 public final void bind(String recipient, String status, String deliveryDate) { argument
61 if (!TextUtils.isEmpty(recipient)) {
62 mRecipientView.setText(Contact.get(recipient, false).getName());
H A DDeliveryReportActivity.java218 String recipient = request.getRecipient();
219 recipient = (Mms.isEmailAddress(recipient))?
220 Mms.extractAddrSpec(recipient): PhoneNumberUtils.stripSeparators(recipient);
221 MmsReportStatus status = queryStatusByRecipient(reportStatus, recipient);
252 Map<String, MmsReportStatus> status, String recipient) {
257 if (Mms.isEmailAddress(recipient)) {
258 if (TextUtils.equals(r, recipient)) {
262 else if (PhoneNumberUtils.compare(r, recipient)) {
251 queryStatusByRecipient( Map<String, MmsReportStatus> status, String recipient) argument
379 MmsReportRequest(String recipient, int drValue, int rrValue) argument
[all...]
H A DRecipientsEditor.java109 // Remember the delimiter the user typed to end this recipient. We'll
146 // If the user is in the middle of editing an existing recipient, don't offer the
149 // recipient and the new post-editing recipient. As a precedent, gmail does not show
150 // the auto-complete menu when editing an existing recipient.
251 // Very tricky bug. In the recipient editor, we always leave a trailing
257 // recipient editor was still visible, call mRecipientsEditor.populate(recipients).
258 // This would replace the recipient that had a comma with a recipient
260 // recipient, thi
490 final Contact recipient; field in class:RecipientsEditor.RecipientContextMenuInfo
[all...]
H A DComposeMessageActivity.java262 private View mTopPanel; // View containing the recipient and subject editors
748 // the wrong recipient. We have been unable to reproduce this,
820 Contact c = ((RecipientContextMenuInfo) menuInfo).recipient;
839 RecipientsMenuClickListener(Contact recipient) { argument
840 mRecipient = recipient;
1061 // Message type is sms. Only allow "edit" if the message has a single recipient
1087 // recipients into one message per recipient, only allow
1088 // editing a message for single-recipient conversations.
1714 // meantime, let anyone who needs the recipient list think it
1731 String recipient
[all...]
/packages/apps/Mms/tests/src/com/android/mms/ui/
H A DSmsTest.java129 String recipient = sb.toString().trim();
130 if (recipient.length() > 0) {
131 mRecipientsList.add(recipient);
185 public void setRecipient(String recipient) { argument
186 mRecipient = recipient;
224 * @param recipientNumber the recipient number for this sms
H A DLongThreadTest.java118 String recipient = sb.toString().trim();
119 if (recipient.length() > 0) {
120 mRecipients.add(recipient);
366 public void setRecipient(String recipient) { argument
367 mRecipient = recipient;
414 for (String recipient : mRecipients) {
425 mSendMmsMessage.setRecipient(recipient);
428 mSendSmsMessage.setRecipient(recipient);

Completed in 110 milliseconds