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

1 2 3

  /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
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
    [all...]
  /external/compiler-rt/
README.android 19 * Recent downstreaming on 2013/3/18: Synced to r177337 (Contact srhines for merge questions.)
20 * Recent downstreaming on 2013/3/5: Synced to r176091 (Contact srhines for merge questions.)
21 * Recent downstreaming on 2013/1/8: Synced to r171802 (Contact srhines for merge questions.)
22 * Recent downstreaming on 2012/08/23: Synced to r162279 (Contact srhines for merge questions.)
23 * Recent downstreaming on 2012/08/15: Synced to r159129 (Contact sliao for merge questions.)
24 * Cherry-pick on 2012/07/27: https://llvm.org/svn/llvm-project/compiler-rt/trunk@160853 for ASan (Contact srhines for merge questions.)
25 * Cherry-pick on 2012/05/23: https://llvm.org/svn/llvm-project/compiler-rt/trunk@157318 for ASan (Contact srhines for merge questions.)
26 * Recent downstreaming on 2012/04/25: Synced to r155350 (Contact sliao for merge questions.)
27 * Recent downstreaming on 2012/03/08: Synced to r152058 (Contact srhines for merge questions.)
  /packages/apps/Contacts/src/com/android/contacts/
ViewNotificationService.java 26 import com.android.contacts.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/llvm/
README.android 25 * Recent downstreaming on 2013/3/18: Synced to r177342 (Contact srhines for merge questions.)
26 * Recent downstreaming on 2013/3/5: Synced to r176139 (Contact srhines for merge questions.)
27 * Recent downstreaming on 2013/1/8: Synced to r171905 (Contact srhines for merge questions.)
28 * Recent downstreaming on 2012/8/23: Synced to r162314 (Contact srhines for merge questions.)
29 * Recent downstreaming on 2012/8/3: Synced to r160668 (Contact sliao for merge questions.)
30 * Cherry-pick on 2012/05/23: https://llvm.org/svn/llvm-project/llvm/trunk@157317 (Contact srhines for merge questions.)
31 * Recent downstreaming on 2012/4/24: Synced to r155090 (Contact sliao for merge questions.)
32 * Recent downstreaming on 2012/3/24: Synced to r153224 (Contact sliao & srhines for merge questions.)
33 * Recent downstreaming on 2012/3/5: Synced to r152063 (Contact srhines & sliao for merge questions.)
34 * Recent downstreaming on 2011/12/17: Synced to r146714 (Contact loganchien & sliao for merge questions.
    [all...]
  /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.model.Contact;
35 * Extends superclass with methods specifically for setting the contact-detail
39 public OnClickListener setupContactPhotoForClick(Context context, Contact contactData,
49 private final Contact mContactData;
54 public PhotoClickListener(Context context, Contact contactData, Bitmap photoBitmap,
99 private OnClickListener setupClickListener(Context context, Contact contactData, Bitmap bitmap,
ContactLoaderFragment.java 47 import com.android.contacts.model.Contact;
53 * This is an invisible worker {@link Fragment} that loads the contact details for the contact card.
76 * contact details have finished loading or if the user selects any menu options.
80 * Contact was not found, so somehow close this fragment. This is raised after a contact
86 * Contact details have finished loading.
88 public void onDetailsLoaded(Contact result);
96 * User decided to delete the contact
111 private Contact mContactData
    [all...]
ContactDetailUpdatesFragment.java 35 import com.android.contacts.model.Contact;
43 private Contact mContactData;
115 // It is possible that the contact data was set to the fragment when it was first attached
124 public void setData(Uri lookupUri, Contact result) {
141 * from a previous contact.
  /packages/apps/Contacts/src/com/android/contacts/model/
Contact.java 38 * A Contact represents a single person or logical entity as perceived by the user. The information
39 * about a contact can come from multiple data sources, which are each represented by a RawContact
40 * object. Thus, a Contact is associated with a collection of RawContact objects.
42 * The aggregation of raw contacts into a single contact is performed automatically, and it is
45 * Only the {@link ContactLoader} class can create a Contact object with various flags to allow
46 * partial loading of contact data. Thus, an instance of this class should be treated as
49 public class Contact {
51 /** Contact is successfully loaded */
53 /** There was an error loading the contact */
55 /** Contact is not found *
    [all...]
ContactLoader.java 72 * Loads a single Contact and all it constituent RawContacts.
74 public class ContactLoader extends AsyncTaskLoader<Contact> {
80 private static Contact sCachedResult = null;
89 private Contact mContact;
111 * Projection used for the query that loads all data for the entire contact (except for
261 * Projection used for the query that loads all data for the entire contact.
304 public Contact loadInBackground() {
309 final Contact cachedResult = sCachedResult;
312 final Contact result;
318 result = new Contact(mRequestedUri, cachedResult)
370 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/activities/
AttachPhotoActivity.java 36 import com.android.contacts.model.Contact;
49 * to contacts. It will first present a contact picker and then run the
119 // A contact was picked. Launch the cropper to get face detection, the right size, etc.
135 public void onContactLoaded(Contact contact) {
136 saveContact(contact);
148 loader.registerListener(0, new OnLoadCompleteListener<Contact>() {
151 Loader<Contact> loader, Contact contact) {
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ConversationListItem.java 39 import com.android.mms.data.Contact;
47 public class ConversationListItem extends RelativeLayout implements Contact.UpdateListener,
143 Contact contact = mConversation.getRecipients().get(0); local
144 avatarDrawable = contact.getAvatar(mContext, sDefaultContactImage);
146 if (contact.existsInDatabase()) {
147 mAvatarView.assignContactUri(contact.getUri());
149 mAvatarView.assignContactFromPhone(contact.getNumber(), true);
165 public void onUpdate(Contact updated) {
166 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 46 import com.android.mms.data.Contact;
170 Contact contact = Contact.get(number, blocking); local
171 contact.setNumber(number);
172 list.add(contact);
236 public static CharSequence contactToToken(Contact c) {
253 // user types (or chooses from the dropdown) a new contact Mms has never
254 // seen before, the contact gets the correct trailing comma. But when the
255 // contact gets added to the mms's contacts table, contacts sends out a
    [all...]
RecipientListActivity.java 41 import com.android.mms.data.Contact;
113 private static class RecipientListAdapter extends ArrayAdapter<Contact> {
135 final Contact contact = getItem(position); local
136 final String name = contact.getName();
137 final String number = contact.getNumber();
147 if (contact.existsInDatabase()) {
148 badge.assignContactUri(contact.getUri());
150 badge.assignContactFromPhone(contact.getNumber(), true);
152 final Drawable avatarDrawable = contact.getAvatar(getContext(), mDefaultContactImage)
    [all...]
DeliveryReportListItem.java 29 import com.android.mms.data.Contact;
62 mRecipientView.setText(Contact.get(recipient, false).getName());
  /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;
  /external/clang/
README.android 25 * Recent downstreaming on 2013/3/18: Synced to r177345 (Contact srhines for merge questions.)
26 * Recent downstreaming on 2013/3/5: Synced to r176138 (Contact srhines for merge questions.)
27 * Recent downstreaming on 2013/1/8: Synced to r171906 (Contact srhines for merge questions.)
  /packages/apps/Contacts/src/com/android/contacts/util/
ImageViewDrawableSetter.java 30 import com.android.contacts.model.Contact;
52 public void setupContactPhoto(Contact contactData, ImageView photoView) {
131 * Obtain the default drawable for a contact when no photo is available.
  /packages/apps/Mms/src/com/android/mms/
LogTag.java 26 import com.android.mms.data.Contact;
39 public static final String CONTACT = "Mms:contact";
104 Contact.dump();

Completed in 311 milliseconds

1 2 3