/development/samples/SampleSyncAdapter/samplesyncadapter_server/model/ |
datastore.py | 17 """Represents user's contact information""" 22 class Contact(db.Model):
|
/frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/ |
UsbHid.java | 53 0x09, 0x55, // USAGE (Contact Count Maximum) 59 0x09, 0x54, // USAGE (Contact Count) 77 0x09, 0x51, // USAGE (Contact Identifier) 100 public void generateReport(ByteBuffer buffer, Contact[] contacts, int contactCount) { 103 // Contact Count 107 final Contact contact = contacts[i]; local 108 // Tip Switch, In Range, Contact Identifier 109 buffer.put((byte)((contact.id << 2) | 0x03)); 111 buffer.put((byte)contact.x).put((byte)(contact.x >> 8)) [all...] |
/packages/apps/Mms/src/com/android/mms/data/ |
ContactList.java | 14 public class ContactList extends ArrayList<Contact> { 21 list.add(Contact.get(number, canBlock)); 33 Contact contact = Contact.get(number, canBlock); local 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) local 76 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"; 56 // log("contact changed, invalidate cache"); 75 // Contact, -1 is invalid. e.g. contact method id is 20 when 76 // current contact has phone content://.../phones/20. 93 private boolean mIsMe; // true if this contact is me! 94 private boolean mSendToVoicemail; // true if this contact should not put up notification 97 public void onUpdate(Contact updated) 557 Contact contact = internalGet(number, isMe); local 787 Contact contact = getContactInfoForEmailAddress(c.mNumber); local [all...] |
Conversation.java | 349 Contact.logWithTrace(TAG, "markAsRead mMarkAsReadWaiting: " + mMarkAsReadWaiting + 609 Contact cacheContact = null; 610 for (Contact c : list) { 611 cacheContact = Contact.get(c.getNumber(), false); [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
ConversationListItem.java | 39 import com.android.mms.data.Contact; 46 public class ConversationListItem extends RelativeLayout implements Contact.UpdateListener, 142 Contact contact = mConversation.getRecipients().get(0); local 143 avatarDrawable = contact.getAvatar(mContext, sDefaultContactImage); 145 if (contact.existsInDatabase()) { 146 mAvatarView.assignContactUri(contact.getUri()); 148 mAvatarView.assignContactFromPhone(contact.getNumber(), true); 164 public void onUpdate(Contact updated) { 165 if (Log.isLoggable(LogTag.CONTACT, Log.DEBUG)) [all...] |
ConversationList.java | 75 import com.android.mms.data.Contact; 395 // we invalidate the contact cache here because we want to get updated presence 396 // and any contact changes. We don't invalidate the cache by observing presence and contact 403 Contact.invalidateCache(); 674 Contact contact = conv.getRecipients().get(0); local 675 Intent intent = new Intent(Intent.ACTION_VIEW, contact.getUri()); [all...] |
ComposeMessageActivity.java | 128 import com.android.mms.data.Contact; 168 MessageStatusListener, Contact.UpdateListener { 305 private Intent mAddContactIntent; // Intent used to add a new contact 625 // it here. However, if we're opening up the quick contact window while typing, don't 1032 Contact contact = Contact.get(phoneNumber, false); local 2938 Contact contact = Contact.get(address, false); local [all...] |
/packages/apps/Mms/src/com/android/mms/widget/ |
MmsWidgetService.java | 37 import com.android.mms.data.Contact; 63 implements RemoteViewsService.RemoteViewsFactory, Contact.UpdateListener { 99 Contact.addListener(this); 112 Contact.removeListener(this); 347 public void onUpdate(Contact updated) { 349 Log.v(TAG, "onUpdate from Contact: " + updated);
|
/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 | 34 import com.android.mms.data.Contact; 92 Contact.init(this);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
Contact.java | 39 * A Contact represents a single person or logical entity as perceived by the user. The information 40 * about a contact can come from multiple data sources, which are each represented by a RawContact 41 * object. Thus, a Contact is associated with a collection of RawContact objects. 43 * The aggregation of raw contacts into a single contact is performed automatically, and it is 46 * Only the {@link ContactLoader} class can create a Contact object with various flags to allow 47 * partial loading of contact data. Thus, an instance of this class should be treated as 50 public class Contact { 52 /** Contact is successfully loaded */ 54 /** There was an error loading the contact */ 56 /** Contact is not found * [all...] |
/packages/apps/Mms/src/com/android/mms/transaction/ |
MessagingNotification.java | 65 import com.android.mms.data.Contact; 249 Contact.logWithTrace(TAG, "blockingUpdateNewMessageIndicator: newMsgThreadId: " + 332 Contact.logWithTrace(TAG, "blockingUpdateAllNotifications: newMsgThreadId: " + 363 public final Contact mSender; 379 * @param sender contact of the sender 386 Bitmap attachmentBitmap, Contact sender, 585 Contact contact = Contact.get(address, false); local 586 if (contact.getSendToVoicemail()) 691 Contact contact = Contact.get(address, false); local 717 Contact contact = Contact.get(address, false); local [all...] |