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

/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.java48 * to contacts. It will first present a contact picker and then run the
118 // A contact was picked. Launch the cropper to get face detection, the right size, etc.
134 public void onContactLoaded(Contact contact) {
135 saveContact(contact);
150 Loader<Contact> loader, Contact contact) {
157 listener.onContactLoaded(contact);
164 public void onContactLoaded(Contact contact); argument
168 * If prerequisites have been met, attach the photo to a raw-contact and save.
171 * - contact has been loaded
173 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.java54 // Remove the new contact from all groups
61 // If the contact is not in the "my contacts" group, nothing should be found
68 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").photo(
70 new SuggestionTesterBuilder(contact).query("D").expectIcon1Uri(true).expectedText1(
75 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").photo(
77 new SuggestionTesterBuilder(contact).query("foo@ac").expectIcon1Uri(true).expectedIcon2(
83 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").company("Google")
85 new SuggestionTesterBuilder(contact).query("D").expectedText1("Deer Dough").expectedText2(
90 GoldenContact contact = new GoldenContactBuilder().name("Deer", "Dough").nickname(
92 new SuggestionTesterBuilder(contact)
125 private final GoldenContact contact; field in class:GlobalSearchSupportTest.SuggestionTester
292 private final GoldenContact contact; field in class:GlobalSearchSupportTest.SuggestionTesterBuilder
304 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'
902 fillPhoneTypeContact(final Contact contact, final Cursor cursor) argument
927 fillSelfContact(final Contact contact, final Cursor cursor) argument
1140 remove(Contact contact) argument
[all...]
/packages/apps/Mms/src/com/android/mms/transaction/
H A DMessagingNotification.java368 * @param sender contact of the sender
574 Contact contact = Contact.get(address, false);
575 if (contact.getSendToVoicemail()) {
625 contact,
680 Contact contact = Contact.get(address, false);
681 String name = contact.getNameAndNumber();
706 Contact contact = Contact.get(address, false);
707 if (contact.getSendToVoicemail()) {
726 contact, WorkingMessage.TEXT);
747 Contact contact,
738 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.java125 * An intent extra that forces the editor to add the edited contact
147 * Split the contact after saving
152 * Join another contact after saving
197 * The raw contact for which we started "take photo" or "choose photo from gallery" most
203 * raw contact.
502 private void bindEditorsForExistingContact(Contact contact) { argument
505 mState = contact.createRawContactDeltaList();
510 mIsUserProfile = contact.isUserProfile();
517 // Try to find a local profile contact
550 // Apply extras to the first writable raw contact onl
[all...]
/packages/apps/Mms/src/com/android/mms/ui/
H A DComposeMessageActivity.java304 private Intent mAddContactIntent; // Intent used to add a new contact
620 // it here. However, if we're opening up the quick contact window while typing, don't
866 private boolean canAddToContacts(Contact contact) { argument
869 final String name = contact.getName();
870 if (!TextUtils.isEmpty(contact.getNumber())) {
871 char c = contact.getNumber().charAt(0);
884 contact.isMe())) {
1027 Contact contact = Contact.get(phoneNumber, false);
1028 if (contact.existsInDatabase()) {
1029 return contact
[all...]

Completed in 101 milliseconds