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

1 2 3

  /frameworks/opt/chips/src/com/android/ex/chips/recipientchip/
BaseRecipientChip.java 50 long getContactId();
SimpleRecipientChip.java 45 mContactId = entry.getContactId();
73 public long getContactId() {
VisibleRecipientChip.java 59 public long getContactId() {
60 return mDelegate.getContactId();
InvisibleRecipientChip.java 61 public long getContactId() {
62 return mDelegate.getContactId();
  /packages/apps/Messaging/src/com/android/messaging/util/
ContactRecipientEntryUtils.java 81 if (entry.getContactId() == CONTACT_ID_SENDTO_DESTINATION) {
99 return entry.getContactId() == CONTACT_ID_NUMBER_WITH_AVATAR;
106 return entry.getContactId() == CONTACT_ID_SENDTO_DESTINATION;
113 return participant.getContactId() == CONTACT_ID_SENDTO_DESTINATION;
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
ParticipantListItemData.java 43 mContactId = participant.getContactId();
76 public long getContactId() {
PersonItemData.java 41 public abstract long getContactId();
ContactListItemData.java 128 public long getContactId() {
129 return mRecipientEntry.getContactId();
VCardContactItemData.java 108 public long getContactId() {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
RawContactMatchingCandidates.java 60 mRawContactToContact.put(score.getRawContactId(), score.getContactId());
78 public Long getContactId(Long rawContactId) {
96 mBestMatches.get(i).getContactId());
ContactMatcher.java 298 contactIds.add(score.getContactId());
321 return score.getContactId();
335 if ((s > maxScore) || ((s == maxScore) && (contactId > score.getContactId()))) {
336 contactId = score.getContactId();
MatchScore.java 70 public long getContactId() {
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_StructuredPhoneticName.java 110 Assert.assertEquals(rawContact1.getContactId(), rawContact2.getContactId());
147 Assert.assertEquals(rawContact1.getContactId(), rawContact2.getContactId());
ContactsContract_IsSuperPrimaryName.java 100 Assert.assertEquals(rawContact1.getContactId(), rawContact2.getContactId());
161 Assert.assertEquals(rawContact1.getContactId(), rawContact2.getContactId());
ContactsContract_AggregationSuggestionsTest.java 190 return new long[] {rawContact1.getContactId(),
191 rawContact2.getContactId(), rawContact3.getContactId()};
ContactsContract_TestDataBuilder.java 279 public long getContactId() {
308 return mRawContact.getContactId();
313 return with(Contacts._ID, mRawContact.getContactId()).loadUsingValues();
  /packages/apps/Dialer/java/com/android/dialer/shortcuts/
DialerShortcut.java 44 abstract long getContactId();
137 return Contacts.getLookupUri(getContactId(), getLookupKey());
ShortcutInfoFactory.java 67 intent.putExtra(EXTRA_CONTACT_ID, shortcut.getContactId());
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
PresenceContact.java 73 public String getContactId() {
  /packages/apps/Messaging/src/com/android/messaging/ui/
BlockedParticipantListItemView.java 60 mContactIconView.setImageResourceUri(data.getAvatarUri(), data.getContactId(),
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GlobalSearchSupportTest.java 197 values.put("_id", contact.getContactId());
203 Contacts.getLookupUri(contact.getContactId(), contact.getLookupKey())
216 values.put("_id", contact.getContactId());
261 Cursor c = refreshQuery(String.valueOf(contact.getContactId()));
  /packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
ShareIntentAdapter.java 103 public long getContactId() {
  /packages/apps/Messaging/src/com/android/messaging/ui/contact/
ContactListItemView.java 129 mContactIconView.setImageResourceUri(avatarUri, mData.getContactId(),
139 mContactIconView.setImageResourceUri(avatarUri, mData.getContactId(),
ContactDropdownLayouter.java 103 boolean isWorkContact = ContactUtil.isEnterpriseContactId(entry.getContactId());
  /packages/apps/Contacts/src/com/android/contacts/list/
MultiSelectContactsListFragment.java 150 final long contactId = getContactId(position);
180 final long contactId = getContactId(position);
192 private long getContactId(int position) {

Completed in 433 milliseconds

1 2 3