/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/ |
D | ContactMatcher.java | 167 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/ |
D | ContactsProvider2Test.java | 8012 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/ |
D | ProfileAggregator.java | 37 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/ |
D | AggregationSuggestionView.java | 61 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()
|
D | AggregationSuggestionEngine.java | 114 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/ |
D | ConfirmAddDetailActivity.java | 124 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/ |
D | VoiceContact.java | 46 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()
|
D | CommandRecognizerEngine.java | 206 sb.append(contact.mContactId).append(' '); in addNameEntriesToGrammar()
|
/packages/apps/Contacts/src/com/android/contacts/group/ |
D | GroupEditorFragment.java | 850 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()
|
D | SuggestedMemberListAdapter.java | 328 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/ |
D | PhoneNumberInteraction.java | 287 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/ |
D | DatabaseAsserts.java | 87 public long mContactId; field in DatabaseAsserts.ContactIdPair 91 this.mContactId = contactId; in ContactIdPair()
|