Searched defs:recipient (Results 1 - 8 of 8) 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
492 final Contact recipient; field in class:RecipientsEditor.RecipientContextMenuInfo
[all...]
H A DComposeMessageActivity.java265 private View mTopPanel; // View containing the recipient and subject editors
753 // the wrong recipient. We have been unable to reproduce this,
825 Contact c = ((RecipientContextMenuInfo) menuInfo).recipient;
844 RecipientsMenuClickListener(Contact recipient) { argument
845 mRecipient = recipient;
1066 // Message type is sms. Only allow "edit" if the message has a single recipient
1093 // recipients into one message per recipient, only allow
1094 // editing a message for single-recipient conversations.
1725 // meantime, let anyone who needs the recipient list think it
1742 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);
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapbMessage.java61 private ArrayList<vCard> recipient = null; field in class:BluetoothMapbMessage
539 if(D) Log.d(TAG,"Decoding recipient vCard level " + level);
540 if(recipient == null)
541 recipient = new ArrayList<vCard>(1);
542 recipient.add(vCard.parseVcard(reader, level));
738 return recipient;
741 public void setRecipient(vCard recipient) { argument
742 if(this.recipient == null)
743 this.recipient = new ArrayList<vCard>();
744 this.recipient
[all...]

Completed in 555 milliseconds