HomeSort by relevance Sort by last modified time
    Searched defs:Contact (Results 1 - 8 of 8) sorted by null

  /development/samples/SampleSyncAdapter/samplesyncadapter_server/model/
datastore.py 17 """Represents user's contact information"""
22 class Contact(db.Model):
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationListItem.java 21 import com.android.mms.data.Contact;
46 public class ConversationListItem extends RelativeLayout implements Contact.UpdateListener {
141 Contact contact = mConversation.getRecipients().get(0); local
142 avatarDrawable = contact.getAvatar(mContext, sDefaultContactImage);
144 if (contact.existsInDatabase()) {
145 mAvatarView.assignContactUri(contact.getUri());
147 mAvatarView.assignContactFromPhone(contact.getNumber(), true);
163 public void onUpdate(Contact updated) {
212 Contact.addListener(this)
    [all...]
ConversationList.java 26 import com.android.mms.data.Contact;
262 // we invalidate the contact cache here because we want to get updated presence
263 // and any contact changes. We don't invalidate the cache by observing presence and contact
270 Contact.invalidateCache();
479 Contact contact = conv.getRecipients().get(0); local
480 Intent intent = new Intent(Intent.ACTION_VIEW, contact.getUri());
706 Contact.init(ConversationList.this);
    [all...]
ComposeMessageActivity.java 132 import com.android.mms.data.Contact;
170 MessageStatusListener, Contact.UpdateListener {
285 private Intent mAddContactIntent; // Intent used to add a new contact
663 Contact c = ((RecipientContextMenuInfo) menuInfo).recipient;
680 private final Contact mRecipient;
682 RecipientsMenuClickListener(Contact recipient) {
708 private boolean canAddToContacts(Contact contact) {
711 final String name = contact.getName();
712 if (!TextUtils.isEmpty(contact.getNumber()))
867 Contact contact = Contact.get(phoneNumber, false); local
2649 Contact contact = Contact.get(address, false); local
    [all...]
  /packages/apps/Mms/src/com/android/mms/data/
ContactList.java 11 import com.android.mms.data.Contact.UpdateListener;
15 public class ContactList extends ArrayList<Contact> {
22 list.add(Contact.get(number, canBlock));
34 Contact contact = Contact.get(number, canBlock); local
36 contact.setNumber(number);
38 list.add(contact);
47 * for the numbers don't belong to any contact.
57 Contact contact = Contact.get(uri.getSchemeSpecificPart(), true) local
77 Contact contact = Contact.get(entry.number, canBlock); local
    [all...]
Contact.java 40 public class Contact {
44 public static final int CONTACT_METHOD_TYPE_SELF = 3; // the "Me" or profile contact
48 private static final String TAG = "Contact";
57 // log("contact changed, invalidate cache");
76 // Contact, -1 is invalid. e.g. contact method id is 20 when
77 // current contact has phone content://.../phones/20.
94 private boolean mIsMe; // true if this contact is me!
95 private boolean mSendToVoicemail; // true if this contact should not put up notification
98 public void onUpdate(Contact updated)
550 Contact contact = internalGet(number, isMe); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Contact.java 45 * Contact Item.
55 public final class Contact
77 public Contact() {
126 /** get the Contact list.
178 /** set the Contact List
215 "JAIN-SIP Exception, Contact, setQValue(), "
221 Contact retval = (Contact) super.clone();
  /packages/apps/Mms/src/com/android/mms/
MmsApp.java 23 import com.android.mms.data.Contact;
78 Contact.init(this);

Completed in 506 milliseconds