Searched refs:ContactList (Results 1 - 9 of 9) sorted by relevance

/packages/apps/Mms/src/com/android/mms/data/
H A DContactList.java15 public class ContactList extends ArrayList<Contact> { class in inherits:ArrayList
18 public static ContactList getByNumbers(Iterable<String> numbers, boolean canBlock) {
19 ContactList list = new ContactList();
28 public static ContactList getByNumbers(String semiSepNumbers,
31 ContactList list = new ContactList();
45 * Returns a ContactList for the corresponding recipient URIs passed in. This method will
49 * @param uris phone URI to create the ContactList
51 public static ContactList blockingGetByUri
[all...]
H A DConversation.java80 private ContactList mRecipients; // The current set of recipients.
97 mRecipients = new ContactList();
107 mRecipients = new ContactList();
156 public static Conversation get(Context context, ContactList recipients, boolean allowQuery) {
220 return get(context, ContactList.getByNumbers(recipient,
236 ContactList incomingRecipient = null;
246 incomingRecipient = ContactList.getByNumbers(recipient,
431 public synchronized void setRecipients(ContactList list) {
448 public synchronized ContactList getRecipients() {
542 private static long getOrCreateThreadId(Context context, ContactList lis
[all...]
H A DRecipientIdCache.java138 public static void updateNumbers(long threadId, ContactList contacts) {
H A DWorkingMessage.java713 * Resolve the temporary working set of recipients to a ContactList.
717 ContactList recipients = ContactList.getByNumbers(mWorkingRecipients, false);
728 ContactList recipients = ContactList.getByNumbers(mWorkingRecipients, false);
915 * new conversation. Will be converted to a ContactList on any
/packages/apps/Mms/src/com/android/mms/ui/
H A DRecipientsEditor.java22 import com.android.mms.data.ContactList;
126 public ContactList constructContactsFromInput(boolean blocking) {
128 ContactList list = new ContactList();
210 public void populate(ContactList list) {
H A DConversationListItem.java22 import com.android.mms.data.ContactList;
209 ContactList contacts = conversation.getRecipients();
H A DComposeMessageActivity.java133 import com.android.mms.data.ContactList;
1576 private static ContactList sEmptyContactList;
1578 private ContactList getRecipients() {
1586 sEmptyContactList = new ContactList();
1593 private void updateTitle(ContactList list) {
1637 ContactList recipients = getRecipients();
1683 ContactList contacts = editor.constructContactsFromInput(false);
2058 ContactList recipients = isRecipientsEditorVisible() ?
2353 ContactList recipients = getRecipients();
2484 ContactList lis
[all...]
H A DConversationList.java27 import com.android.mms.data.ContactList;
443 ContactList recipients = conv.getRecipients();
/packages/apps/Mms/tests/src/com/android/mms/ui/
H A DComposeMessageActivityTests.java22 import com.android.mms.data.ContactList;
199 ContactList contactList = ContactList.getByNumbers(phoneNum, false, false);

Completed in 1882 milliseconds