HomeSort by relevance Sort by last modified time
    Searched refs:contact (Results 51 - 75 of 148) sorted by null

1 23 4 5 6

  /packages/apps/Dialer/java/com/android/dialer/searchfragment/cp2/
SearchContactViewHolder.java 50 /** ViewHolder for a contact row. */
129 // Show the contact photo next to only the first number if a contact has multiple numbers
268 DialerContact.Builder contact = DialerContact.newBuilder(); local
275 contact
289 contact.setPhotoUri(photoUri);
293 contact.setContactUri(contactUri.toString());
297 contact.setDisplayNumber(number);
300 return contact.build();
  /external/ltp/pan/
tag_report.c 23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
235 char *tag, *contact, *is, *mystime, *duration, *tt, *ti, *sl, *el; local
356 if ((contact = (char *)sym_get(keys, key_get)) == NULL) {
357 contact = "No_Contacts";
366 tag, "!", "!", is, contact, mystime, duration,
405 fprintf(out, FORMAT, "tag", "tcid", "testcase", "status", "contact");
  /packages/apps/Messaging/src/com/android/messaging/ui/contact/
ContactListAdapter.java 17 package com.android.messaging.ui.contact;
AddContactsConfirmationDialog.java 16 package com.android.messaging.ui.contact;
ContactRecipientPhotoManager.java 16 package com.android.messaging.ui.contact;
38 * {@link MediaResourceManager} for retrieving and caching contact avatars.
  /developers/build/prebuilts/gradle/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/contacts/
ContactsListAdapter.java 67 * A listener for when a contact has been selected/unselected. Note that this is not the same
163 Profile contact = mContacts.get(position - INDEX_OFFSET); local
165 viewHolderContent.name.setText(contact.getName());
168 .load(contact.getProfileImageSource())
229 * Toggles the selected state of a contact.
231 * @param position position of contact.
264 /** Holds references each contact layout element. */
  /developers/samples/android/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/contacts/
ContactsListAdapter.java 67 * A listener for when a contact has been selected/unselected. Note that this is not the same
163 Profile contact = mContacts.get(position - INDEX_OFFSET); local
165 viewHolderContent.name.setText(contact.getName());
168 .load(contact.getProfileImageSource())
229 * Toggles the selected state of a contact.
231 * @param position position of contact.
264 /** Holds references each contact layout element. */
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapConvoContactElement.java 62 public static BluetoothMapConvoContactElement createFromMapContact(MapContact contact,
67 newElement.mBtUid = new SignedLongLong(contact.getId(), 0);
68 newElement.mDisplayName = contact.getName();
198 // construct the XML tag for a single contact in the convolisting element.
  /packages/apps/Calendar/src/com/android/calendar/
ContactsAsyncHelper.java 139 ImageView imageView, Uri contact, int placeholderImageResource) {
143 if (contact == null) {
157 args.uri = contact;
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapUtils.java 219 * indicates the time when contact/contacts were last updated and
229 Log.d(TAG, "Failed to fetch data from contact database");
250 /* code to check if new contact/contacts are added */
252 for (String contact : updatedList) {
253 String[] selectionArgs = {contact};
260 /* When contact/contacts are deleted */
282 Log.d(TAG, "Failed to fetch data from contact database");
299 for (String contact : updatedList) {
307 String[] selectionArgs = {contact};
312 Log.d(TAG, "Failed to fetch data from contact database")
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
ContactLoader.java 78 * Loads a single Contact and all it constituent RawContacts.
80 public class ContactLoader extends AsyncTaskLoader<Contact> {
87 private static Contact sCachedResult = null;
94 private Contact mContact;
118 * Projection used for the query that loads all data for the entire contact (except for
279 * Projection used for the query that loads all data for the entire contact.
305 public Contact loadInBackground() {
310 final Contact cachedResult = sCachedResult;
313 final Contact result;
319 result = new Contact(mRequestedUri, cachedResult)
379 final Contact contact = new Contact( local
476 Contact contact = loadContactHeaderData(cursor, contactUri); local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccProvider.java 153 return "vnd.android.cursor.dir/sim-contact";
243 // If name is empty in contact return null to avoid crash.
516 Object[] contact = new Object[4]; local
521 contact[0] = alphaTag;
522 contact[1] = number;
532 contact[2] = emailString.toString();
534 contact[3] = id;
535 cursor.addRow(contact);
  /packages/apps/Dialer/java/com/android/contacts/common/list/
PhoneNumberListAdapter.java 265 DialerContact.Builder contact = DialerContact.newBuilder(); local
266 contact
279 contact.setPhotoUri(photoUri);
283 contact.setContactUri(contactUri.toString());
287 contact.setDisplayNumber(number);
290 return contact.build();
313 // Look at elements before and after this position, checking if contact IDs are same.
314 // If they have one same contact ID, it means they can be grouped.
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
ContactsFacade.java 135 @Rpc(description = "Returns a List of all contact IDs.")
228 JSONObject contact = null; local
243 contact = new JSONObject();
246 contact.put(columns[i], cursor.getString(i));
250 return contact;
  /packages/apps/Contacts/tests/src/com/android/contacts/activities/
SimImportActivityTest.java 350 private Object[] toCursorRow(SimContact contact) {
351 return new Object[] { contact.getId(), contact.getName(), contact.getPhone(), null };
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
RawContactDeltaTests.java 63 // Build an existing contact read from database
64 final ContentValues contact = new ContentValues(); local
65 contact.put(RawContacts.VERSION, 43);
66 contact.put(RawContacts._ID, contactId);
74 final RawContact before = new RawContact(contact);
216 // Update parent contact values
226 // Assert three operations: update Contact, insert Data row, enforce version
305 // Assert two operations: delete Contact and enforce version
331 // Assert two operations: insert Contact and enforce version
360 // Assert two operations: delete Contact and enforce versio
    [all...]
  /packages/apps/Messaging/tests/src/com/android/messaging/ui/conversation/
ConversationActivityUiStateTest.java 23 import com.android.messaging.ui.contact.ContactPickerFragment;
35 * Test the Ui state where we start off with the contact picker to pick the first contact.
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_ContactCountsTest.java 125 TestContact contact = rawContact.getContact().load(); local
177 return new long[] {contact.getId(), contact2.getId(), contact3.getId(), contact4.getId(),
  /external/ltp/pan/cgi/
reconsile.cgi 79 ($tag, $tcid, $tc, $status, $contact) = split(/\s+/, $line);
90 $rec->{CONTACT} = $contact;
133 print "<th>Contact</tr>\n";
233 print "<td>$LCR->{CONTACT}</tr>\n";
247 $copy->{CONTACT} = $rec->{CONTACT};
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPClientTransaction.java 33 import gov.nist.javax.sip.header.Contact;
1151 Contact contact = (Contact) lastResponse.getContactHeaders().getFirst(); local
1172 Contact contact = null; local
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/model/
ContactLoader.java 70 /** Loads a single Contact and all it constituent RawContacts. */
71 public class ContactLoader extends AsyncTaskLoader<Contact> {
76 private static Contact sCachedResult = null;
85 private Contact mContact;
109 * Parses a {@link Contact} stored as a JSON string in a lookup URI.
111 * @param lookupUri The contact information to parse .
112 * @return The parsed {@code Contact} information.
114 public static Contact parseEncodedContactEntity(Uri lookupUri) {
122 private static Contact loadEncodedContactEntity(Uri uri, Uri lookupUri) throws JSONException {
133 final Contact contact local
288 Contact contact = loadContactHeaderData(cursor, contactUri); local
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
IntentProvider.java 28 import com.android.contacts.common.model.Contact;
174 * @param contact The contact with which this call details intent pertains to.
181 DialerContact contact,
188 context, callDetailsEntries, contact, canReportCallerId, canSupportAssistedDialing);
193 /** Retrieves an add contact intent for the given contact and phone call details. */
203 Contact contactToSave = null;
210 // Populate the intent with contact information stored in the lookup URI.
229 // way we will still consider the contact an organization
    [all...]
  /packages/apps/Messaging/tests/src/com/android/messaging/ui/contact/
ContactPickerFragmentTest.java 17 package com.android.messaging.ui.contact;
39 import com.android.messaging.ui.contact.ContactPickerFragment.ContactPickerFragmentHost;
182 // Click on the first contact to add it.
188 // Verify the contact is added to the chips view.
215 // Click on the first contact to add it.
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ContactsManager.java 75 * Calculates the affinity with the contact based on:
77 * - How long since the last contact.
78 * - Whether the contact is in the visible group (i.e., Contacts list).
82 * contact may still have 0 affinity.
182 for (RankedContact contact : contacts) {
183 contact.computeAffinity(maxTimesContacted, currentTime);
  /packages/services/Car/tests/UxRestrictionsSample/src/com/google/android/car/uxr/sample/
MainActivity.java 220 private TextListItem createMessage(@DrawableRes int profile, String contact, String message) {
223 item.setTitle(contact);

Completed in 1217 milliseconds

1 23 4 5 6