Searched defs:contact (Results 1 - 10 of 10) sorted by relevance

/packages/apps/Dialer/src/com/android/dialer/contact/
H A DContactUpdateService.java17 package com.android.dialer.contact;
26 * Service for updating primary number on a contact.
/packages/apps/Calendar/src/com/android/calendar/
H A DContactsAsyncHelper.java139 ImageView imageView, Uri contact, int placeholderImageResource) {
143 if (contact == null) {
157 args.uri = contact;
138 updateImageViewWithContactPhotoAsync(Context context, ImageView imageView, Uri contact, int placeholderImageResource) argument
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DAttachPhotoActivity.java51 * to contacts. It will first present a contact picker and then run the
126 // A contact was picked. Launch the cropper to get face detection, the right size, etc.
168 public void onContactLoaded(Contact contact) {
169 saveContact(contact);
184 Loader<Contact> loader, Contact contact) {
191 listener.onContactLoaded(contact);
198 public void onContactLoaded(Contact contact); argument
202 * If prerequisites have been met, attach the photo to a raw-contact and save.
205 * - contact has been loaded
207 private void saveContact(Contact contact) { argument
[all...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DContactLoader.java38 public void onContactLoaded(ContactData contact); argument
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DGlobalSearchSupportTest.java56 // Remove the new contact from all groups
63 // If the contact is not in the "my contacts" group, nothing should be found
70 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").photo(
72 new SuggestionTesterBuilder(contact).query("D").expectIcon1Uri(true).expectedText1(
77 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").photo(
79 new SuggestionTesterBuilder(contact).query("foo@ac").expectIcon1Uri(true).expectedIcon2(
85 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").company("Google")
87 new SuggestionTesterBuilder(contact).query("D").expectedText1("Deer Dough").expectedText2(
92 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").nickname(
94 new SuggestionTesterBuilder(contact)
127 private final GoldenContact contact; field in class:GlobalSearchSupportTest.SuggestionTester
294 private final GoldenContact contact; field in class:GlobalSearchSupportTest.SuggestionTesterBuilder
306 SuggestionTesterBuilder(GoldenContact contact) argument
[all...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
H A DContactsListFragment.java50 public void onContactSelected(Uri contact); argument
/packages/apps/Mms/src/com/android/mms/data/
H A DContact.java44 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
104 * Make a basic contact object with a phone number.
182 // stale so the next time we're asked for a particular contact, we'll return that
183 // stale contact and at the same time, fire off an asyncUpdateContact to update
184 // that contact'
911 fillPhoneTypeContact(final Contact contact, final Cursor cursor) argument
936 fillSelfContact(final Contact contact, final Cursor cursor) argument
1149 remove(Contact contact) argument
[all...]
/packages/apps/Mms/src/com/android/mms/transaction/
H A DMessagingNotification.java379 * @param sender contact of the sender
585 Contact contact = Contact.get(address, false);
586 if (contact.getSendToVoicemail()) {
636 contact,
691 Contact contact = Contact.get(address, false);
692 String name = contact.getNameAndNumber();
717 Contact contact = Contact.get(address, false);
718 if (contact.getSendToVoicemail()) {
737 contact, WorkingMessage.TEXT);
758 Contact contact,
749 getNewMessageNotificationInfo( Context context, boolean isSms, String address, String message, String subject, long threadId, long timeMillis, Bitmap attachmentBitmap, Contact contact, int attachmentType) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DContactEditorFragment.java134 * An intent extra that forces the editor to add the edited contact
156 * Split the contact after saving
161 * Join another contact after saving
206 * The raw contact for which we started "take photo" or "choose photo from gallery" most
212 * raw contact.
247 // Whether to show the new contact blank form and if it's corresponding delta is ready.
251 // Whether it's an edit of existing contact and if it's corresponding delta is ready.
256 // contact.
259 // Used to temporarily store existing contact data during a rebind call (i.e. account switch)
511 public void setData(Contact contact) { argument
[all...]
/packages/apps/Mms/src/com/android/mms/ui/
H A DComposeMessageActivity.java305 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
871 private boolean canAddToContacts(Contact contact) { argument
874 final String name = contact.getName();
875 if (!TextUtils.isEmpty(contact.getNumber())) {
876 char c = contact.getNumber().charAt(0);
889 contact.isMe())) {
1032 Contact contact = Contact.get(phoneNumber, false);
1033 if (contact.existsInDatabase()) {
1034 return contact
[all...]

Completed in 902 milliseconds