Home | History | Annotate | Download | only in data

Lines Matching defs:Contact

14 public class ContactList extends ArrayList<Contact>  {
21 list.add(Contact.get(number, canBlock));
33 Contact contact = Contact.get(number, canBlock);
35 contact.setNumber(number);
37 list.add(contact);
46 * for the numbers don't belong to any contact.
56 Contact contact = Contact.get(uri.getSchemeSpecificPart(), true);
57 list.add(contact);
60 final List<Contact> contacts = Contact.getByPhoneUris(uris);
70 * create the contact if it doesn't exist, and would inject the recipient id into the contact.
76 Contact contact = Contact.get(entry.number, canBlock);
77 contact.setRecipientId(entry.id);
78 list.add(contact);
95 for (Contact c : this) {
104 for (Contact c : this) {
115 for (Contact c : this) {
130 for (Contact c : this) {
141 // Don't add duplicate numbers. This can happen if a contact name has a comma.
156 // If they're different sizes, the contact
163 for (Contact c : this) {