Home | History | Annotate | Download | only in data

Lines Matching defs:ContactList

14 public class ContactList extends ArrayList<Contact>  {
17 public static ContactList getByNumbers(Iterable<String> numbers, boolean canBlock) {
18 ContactList list = new ContactList();
27 public static ContactList getByNumbers(String semiSepNumbers,
30 ContactList list = new ContactList();
44 * Returns a ContactList for the corresponding recipient URIs passed in. This method will
48 * @param uris phone URI to create the ContactList
50 public static ContactList blockingGetByUris(Parcelable[] uris) {
51 ContactList list = new ContactList();
69 * Returns a ContactList for the corresponding recipient ids passed in. This method will
72 public static ContactList getByIds(String spaceSepIds, boolean canBlock) {
73 ContactList list = new ContactList();
155 ContactList other = (ContactList)obj;
176 Log.d(LogTag.TAG, "[ContactList] " + msg);