HomeSort by relevance Sort by last modified time
    Searched refs:Contact (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/nist-sip/java/gov/nist/javax/sip/header/
ContactList.java 36 * List of contact headers.ContactLists are also maintained in a hashtable
42 public class ContactList extends SIPHeaderList<Contact> {
55 super(Contact.class, ContactHeader.NAME);
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/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
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
98 public void onUpdate(Contact updated);
101 private Contact(String number, String name)
565 Contact contact = internalGet(number, isMe); local
796 Contact contact = getContactInfoForEmailAddress(c.mNumber); local
    [all...]
  /external/compiler-rt/
README.android 22 * Recent downstreaming on 2013/2/11: Synced to r197381 (Contact srhines for merge questions.)
23 * Recent downstreaming on 2013/8/8: Synced to r187889 (Contact srhines for merge questions.)
24 * Recent downstreaming on 2013/6/13: Synced to r183849 (Contact srhines for merge questions.)
25 * Recent downstreaming on 2013/5/3: Synced to r180792 (Contact srhines for merge questions.)
26 * Recent downstreaming on 2013/3/18: Synced to r177337 (Contact srhines for merge questions.)
27 * Recent downstreaming on 2013/3/5: Synced to r176091 (Contact srhines for merge questions.)
28 * Recent downstreaming on 2013/1/8: Synced to r171802 (Contact srhines for merge questions.)
29 * Recent downstreaming on 2012/08/23: Synced to r162279 (Contact srhines for merge questions.)
30 * Recent downstreaming on 2012/08/15: Synced to r159129 (Contact sliao for merge questions.)
31 * Cherry-pick on 2012/07/27: https://llvm.org/svn/llvm-project/compiler-rt/trunk@160853 for ASan (Contact srhines for merge questions.
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ViewNotificationService.java 26 import com.android.contacts.common.model.Contact;
31 * Service that sends out a view notification for a contact. At the moment, this is only
46 contactLoader.registerListener(0, new OnLoadCompleteListener<Contact>() {
48 public void onLoadComplete(Loader<Contact> loader, Contact data) {
  /external/chromium_org/third_party/mesa/src/docs/
MESA_release_buffers.spec 9 Contact
  /external/mesa3d/docs/
MESA_release_buffers.spec 9 Contact
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ContactParser.java 28 import gov.nist.javax.sip.header.Contact;
38 * A parser for The SIP contact header.
45 public ContactParser(String contact) {
46 super(contact);
56 headerName(TokenTypes.CONTACT);
59 Contact contact = new Contact(); local
64 contact.setWildCardFlag(true);
66 super.parse(contact);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailPhotoSetter.java 30 import com.android.contacts.common.model.Contact;
35 * Extends superclass with methods specifically for setting the contact-detail
39 public OnClickListener setupContactPhotoForClick(Context context, Contact contactData,
48 private final Contact mContactData;
53 public PhotoClickListener(Context context, Contact contactData, Bitmap photoBitmap,
98 private OnClickListener setupClickListener(Context context, Contact contactData, Bitmap bitmap,
ContactDisplayUtils.java 22 import com.android.contacts.common.model.Contact;
51 * This class contains utility methods to bind high-level contact details
53 * {@link Contact} data object to appropriate {@link View}s.
60 * Returns the display name of the contact, using the current display order setting.
63 public static CharSequence getDisplayName(Context context, Contact contactData) {
84 * Returns the phonetic name of the contact or null if there isn't one.
86 public static String getPhoneticName(Context context, Contact contactData) {
95 * Returns the attribution string for the contact, which may specify the contact directory that
96 * the contact came from. Returns null if there is none applicable
    [all...]
  /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...]
ContactLoader.java 74 * Loads a single Contact and all it constituent RawContacts.
76 public class ContactLoader extends AsyncTaskLoader<Contact> {
83 private static Contact sCachedResult = null;
91 private Contact mContact;
112 * Projection used for the query that loads all data for the entire contact (except for
262 * Projection used for the query that loads all data for the entire contact.
303 public Contact loadInBackground() {
308 final Contact cachedResult = sCachedResult;
311 final Contact result;
317 result = new Contact(mRequestedUri, cachedResult)
381 final Contact contact = new Contact( local
478 Contact contact = loadContactHeaderData(cursor, contactUri); local
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 18 Defines Django forms for inserting/updating/viewing contact data
66 """Represents django form for entering contact info."""
69 model = datastore.Contact
74 Processes requests to add a new contact. GET presents an empty
75 contact form for the user to fill in. POST saves the new contact
80 self.send_form('Add Contact', '/add_contact', -1, None, ContactForm())
91 self.send_form('Add Contact', '/add_contact', -1, None, data)
96 Process requests to edit a contact's information. GET presents a form
97 with the current contact information filled in. POST saves new informatio
    [all...]
web_services.py 131 it returns user's contact info in JSON format.
139 logging.info('*** Starting contact sync ***')
149 # the newly added contact.
159 logging.info('Returning ' + str(len(updated_contacts)) + ' contact records')
184 contacts = datastore.Contact.all()
190 for contact in contacts:
191 if (contact.updated > high_water_date):
192 high_water_date = contact.updated
198 for contact in contacts:
200 # contact (for example, it's a contact just uploaded from the client
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DirectoryContactUtil.java 7 import com.android.contacts.common.model.Contact;
30 public static boolean isDirectoryContact(Contact contactData) {
31 // Not a directory contact? Nothing to fix here
InvisibleContactUtil.java 9 import com.android.contacts.common.model.Contact;
32 public static boolean isInvisibleAndAddable(Contact contactData, Context context) {
39 // Only if exactly one raw contact
57 // Check whether the contact is in the default group
72 public static void addToDefaultGroup(Contact contactData, Context context) {
  /packages/apps/Contacts/src/com/android/contacts/activities/
AttachPhotoActivity.java 41 import com.android.contacts.common.model.Contact;
57 * to contacts. It will first present a contact picker and then run the
152 // If there isn't an account specified, then the user opted to keep the contact local.
159 // A contact was picked. Launch the cropper to get face detection, the right size, etc.
198 public void onContactLoaded(Contact contact) {
199 saveContact(contact);
211 loader.registerListener(0, new OnLoadCompleteListener<Contact>() {
214 Loader<Contact> loader, Contact contact)
    [all...]
  /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/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...]
SearchActivity.java 50 import com.android.mms.data.Contact;
54 * matches. The item contains the contact (or phone number) as the "title" and a
64 // Track which TextView's show which Contact objects so that we can update
65 // appropriately when the Contact gets fully loaded.
66 private HashMap<Contact, TextView> mContactMap = new HashMap<Contact, TextView>();
190 Contact.UpdateListener mContactListener = new Contact.UpdateListener() {
191 public void onUpdate(Contact updated) {
202 Contact.removeListener(mContactListener)
    [all...]
RecipientsEditor.java 49 import com.android.mms.data.Contact;
180 Contact contact = Contact.get(number, blocking); local
181 contact.setNumber(number);
182 list.add(contact);
246 public static CharSequence contactToToken(Contact c) {
263 // user types (or chooses from the dropdown) a new contact Mms has never
264 // seen before, the contact gets the correct trailing comma. But when the
265 // contact gets added to the mms's contacts table, contacts sends out a
    [all...]
RecipientListActivity.java 42 import com.android.mms.data.Contact;
114 private static class RecipientListAdapter extends ArrayAdapter<Contact> {
136 final Contact contact = getItem(position); local
137 final String name = contact.getName();
138 final String number = contact.getNumber();
148 if (contact.existsInDatabase()) {
149 badge.assignContactUri(contact.getUri());
151 badge.assignContactFromPhone(contact.getNumber(), true);
153 final Drawable avatarDrawable = contact.getAvatar(getContext(), mDefaultContactImage)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
ListeningPointImpl.java 42 import gov.nist.javax.sip.header.Contact;
233 Contact contact = new Contact(); local
236 contact.setAddress(address);
238 return contact;
  /packages/apps/Contacts/src/com/android/contacts/util/
ImageViewDrawableSetter.java 32 import com.android.contacts.common.model.Contact;
45 private Contact mContact;
55 public Bitmap setupContactPhoto(Contact contactData, ImageView photoView) {
138 * Obtain the default drawable for a contact when no photo is available. If this is a local
139 * contact, then use the contact's display name and lookup key (as a unique identifier) to
140 * retrieve a default drawable for this contact. If not, then use the name as the contact

Completed in 630 milliseconds

1 2 3 4