Home | History | Annotate | Download | only in mail

Lines Matching refs:contactUri

24     public final Uri contactUri;
29 public ContactInfo(Uri contactUri, Integer status) {
30 this(contactUri, status, null, null);
33 public ContactInfo(Uri contactUri, Integer status, byte[] photoBytes) {
34 this(contactUri, status, photoBytes, null);
37 public ContactInfo(Uri contactUri, Integer status, Bitmap photo) {
38 this(contactUri, status, null, photo);
41 private ContactInfo(Uri contactUri, Integer status, byte[] photoBytes, Bitmap photo) {
42 this.contactUri = contactUri;