Searched refs:recipient (Results 1 - 14 of 14) 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 DDeliveryReportActivity.java219 String recipient = request.getRecipient();
220 recipient = (Mms.isEmailAddress(recipient))?
221 Mms.extractAddrSpec(recipient): PhoneNumberUtils.stripSeparators(recipient);
222 MmsReportStatus status = queryStatusByRecipient(reportStatus, recipient);
253 Map<String, MmsReportStatus> status, String recipient) {
258 if (Mms.isEmailAddress(recipient)) {
259 if (TextUtils.equals(r, recipient)) {
263 else if (PhoneNumberUtils.compare(r, recipient)) {
252 queryStatusByRecipient( Map<String, MmsReportStatus> status, String recipient) argument
380 MmsReportRequest(String recipient, int drValue, int rrValue) argument
[all...]
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 DDeliveryReportAdapter.java37 super(context, R.layout.delivery_report_list_item, R.id.recipient, items);
57 listItem.bind(item.recipient, item.status, item.deliveryDate);
H A DRecipientsEditor.java112 // Remember the delimiter the user typed to end this recipient. We'll
156 // If the user is in the middle of editing an existing recipient, don't offer the
159 // recipient and the new post-editing recipient. As a precedent, gmail does not show
160 // the auto-complete menu when editing an existing recipient.
261 // Very tricky bug. In the recipient editor, we always leave a trailing
267 // recipient editor was still visible, call mRecipientsEditor.populate(recipients).
268 // This would replace the recipient that had a comma with a recipient
270 // recipient, thi
502 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/Dialer/src/com/android/dialer/calllog/
H A DCallLogListItemHelper.java221 final CharSequence recipient;
223 recipient = details.name;
225 recipient = mPhoneNumberHelper.getDisplayNumber(
228 return recipient;
/packages/apps/Mms/tests/src/com/android/mms/ui/
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);
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
/packages/apps/Mms/apptests/src/com/android/mms/tests/
H A DSmsSendIntentTestActivity.java111 String recipient = mRecipient.getText().toString();
112 if (TextUtils.isEmpty(recipient)) {
113 Toast.makeText(SmsSendIntentTestActivity.this, "Please enter a message recipient.",
132 Uri uri = Uri.fromParts("smsto", recipient, null);
141 String recipient = mRecipient.getText().toString();
142 if (TextUtils.isEmpty(recipient)) {
143 Toast.makeText(SmsSendIntentTestActivity.this, "Please enter a message recipient.",
161 Uri uri = Uri.fromParts("smsto", recipient, null);
/packages/apps/Mms/tests/src/com/android/mms/
H A DRecyclerTest.java114 String recipient = sb.toString().trim();
115 if (recipient.length() > 0) {
116 mRecipients.add(recipient);
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapbMessage.java563 if(D) Log.d(TAG,"Decoding recipient vCard level " + level);
770 public void setRecipient(vCard recipient) { argument
773 this.mRecipient.add(recipient);
860 if(V) Log.v(TAG, "encodeGeneric: recipient email" + element.getFirstEmail());
H A DBluetoothMapContentObserver.java1153 if (D) Log.d(TAG, "empty recipient list");
1217 for (BluetoothMapbMessage.vCard recipient : recipientList) {
1218 if(recipient.getEnvLevel() == 0) // Only send the message to the top level recipient
1221 String phone = recipient.getFirstPhoneNumber();
1222 String email = recipient.getFirstEmail();
/packages/apps/Mms/src/com/android/mms/data/
H A DConversation.java84 // new conversation where the recipient set is changing as the user
163 * Find the conversation matching the provided recipient set.
164 * When called with an empty recipient list, equivalent to {@link #createNew}.
236 * Returns true if the recipient in the uri matches the recipient list in this
256 String recipient = getRecipients(uri);
257 incomingRecipient = ContactList.getByNumbers(recipient,
269 * The recipient list of this conversation can be empty if the results
502 // Invalidate thread ID because the recipient set has changed.
511 * Returns the recipient se
[all...]

Completed in 461 milliseconds