Home
last modified time | relevance | path

Searched refs:mContactId (Results 1 – 12 of 12) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
DContactMatcher.java167 private long mContactId; field in ContactMatcher.MatchScore
175 this.mContactId = contactId; in MatchScore()
179 this.mContactId = contactId; in reset()
188 return mContactId; in getContactId()
239 return mContactId + ": " + mPrimaryScore + "/" + mSecondaryScore + "(" + mMatchCount in toString()
386 contactIds.add(score.mContactId); in prepareSecondaryMatchCandidates()
409 return score.mContactId; in pickBestMatch()
423 if ((s > maxScore) || ((s == maxScore) && (contactId > score.mContactId))) { in pickBestMatch()
424 contactId = score.mContactId; in pickBestMatch()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2Test.java8012 DatabaseAsserts.assertHasDeleteLogGreaterThan(mResolver, ids.mContactId, start); in testContactDelete_hasDeleteLog()
8023 List<String[]> records = RawContactUtil.queryByContactId(mResolver, ids.mContactId, in testContactDelete_marksRawContactsForDeletion()
8038 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testContactUpdate_updatesContactUpdatedTimestamp()
8044 ContactUtil.update(mResolver, ids.mContactId, values); in testContactUpdate_updatesContactUpdatedTimestamp()
8046 long newTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testContactUpdate_updatesContactUpdatedTimestamp()
8069 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactUpdate_updatesContactUpdatedTimestamp()
8075 long newTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactUpdate_updatesContactUpdatedTimestamp()
8085 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactPsuedoDelete_hasDeleteLogForContact()
8089 DatabaseAsserts.assertHasDeleteLogGreaterThan(mResolver, ids.mContactId, baseTime); in testRawContactPsuedoDelete_hasDeleteLogForContact()
8098 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactDelete_hasDeleteLogForContact()
[all …]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DProfileAggregator.java37 private long mContactId; field in ProfileAggregator
65 return mContactId; in onRawContactInsert()
85 mContactId = profileContactIdLookup.simpleQueryForLong(); in aggregateContact()
86 updateAggregateData(txContext, mContactId); in aggregateContact()
89 mContactId = insertContact(db, rawContactId); in aggregateContact()
93 setContactId(rawContactId, mContactId); in aggregateContact()
/packages/apps/Contacts/src/com/android/contacts/editor/
DAggregationSuggestionView.java61 private long mContactId; field in AggregationSuggestionView
83 mContactId = suggestion.contactId; in bindSuggestion()
141 mListener.onEditAction(Contacts.getLookupUri(mContactId, mLookupKey)); in handleItemClickEvent()
147 mListener.onJoinAction(mContactId, rawContactIds); in handleItemClickEvent()
DAggregationSuggestionEngine.java114 private long mContactId; field in AggregationSuggestionEngine
144 if (contactId != mContactId) { in setContactId()
145 mContactId = contactId; in setContactId()
223 .setContactId(mContactId); in buildAggregationSuggestionUri()
/packages/apps/Contacts/src/com/android/contacts/activities/
DConfirmAddDetailActivity.java124 private long mContactId; field in ConfirmAddDetailActivity
347 selectionArgs = new String[] { String.valueOf(mContactId) }; in startDisambiguationQuery()
350 selectionArgs = new String[] { contactDisplayName, String.valueOf(mContactId) }; in startDisambiguationQuery()
364 new String[] { String.valueOf(mContactId) }, null); in startExtraInfoQuery()
496 mContactId = cursor.getLong(ContactQuery._ID); in onQueryComplete()
500 Uri lookupUri = Contacts.getLookupUri(mContactId, mLookupKey); in onQueryComplete()
/packages/apps/VoiceDialer/src/com/android/voicedialer/
DVoiceContact.java46 public final long mContactId; field in VoiceContact
71 mContactId = contactId; in VoiceContact()
84 hash = LARGE_PRIME * (hash + (int)mContactId); in hashCode()
97 + " mPersonId=" + mContactId in toString()
DCommandRecognizerEngine.java206 sb.append(contact.mContactId).append(' '); in addNameEntriesToGrammar()
/packages/apps/Contacts/src/com/android/contacts/group/
DGroupEditorFragment.java850 private final long mContactId; field in GroupEditorFragment.Member
859 mContactId = contactId; in Member()
871 return mContactId; in getContactId()
913 dest.writeLong(mContactId); in writeToParcel()
922 mContactId = in.readLong(); in Member()
DSuggestedMemberListAdapter.java328 private long mContactId; field in SuggestedMemberListAdapter.SuggestedMember
336 mContactId = contactId; in SuggestedMember()
352 return mContactId; in getContactId()
/packages/apps/Dialer/src/com/android/dialer/interactions/
DPhoneNumberInteraction.java287 private long mContactId = UNKNOWN_CONTACT_ID; field in PhoneNumberInteraction
395 if (mContactId == UNKNOWN_CONTACT_ID) { in onLoadComplete()
396 mContactId = cursor.getLong(CONTACT_ID); in onLoadComplete()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/
DDatabaseAsserts.java87 public long mContactId; field in DatabaseAsserts.ContactIdPair
91 this.mContactId = contactId; in ContactIdPair()