Home
last modified time | relevance | path

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

/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
DParticipantData.java112 private long mContactId; field in ParticipantData
136 pd.mContactId = cursor.getLong(ParticipantsQuery.INDEX_CONTACT_ID); in getFromCursor()
184 pd.mContactId = recipientEntry.getContactId(); in getFromRecipientEntry()
185 if (pd.mContactId < 0) { in getFromRecipientEntry()
189 pd.mContactId = PARTICIPANT_CONTACT_ID_NOT_RESOLVED; in getFromRecipientEntry()
211 pd.mContactId = PARTICIPANT_CONTACT_ID_NOT_RESOLVED; in getFromRawPhone()
277 pd.mContactId = PARTICIPANT_CONTACT_ID_NOT_RESOLVED; in getSelfParticipant()
352 return mContactId; in getContactId()
413 mContactId = contactId; in setContactId()
480 return (mContactId != PARTICIPANT_CONTACT_ID_NOT_RESOLVED); in isContactIdResolved()
[all …]
DParticipantListItemData.java34 private final long mContactId; field in ParticipantListItemData
43 mContactId = participant.getContactId(); in ParticipantListItemData()
77 return mContactId; in getContactId()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
DMatchScore.java28 private long mContactId; field in MatchScore
40 this.mContactId = contactId; in MatchScore()
46 this.mContactId = contactId; in MatchScore()
52 this.mContactId = contactId; in reset()
71 return mContactId; in getContactId()
146 return mRawContactId + "/" + mContactId + "/" + mAccountId + ": " + mPrimaryScore + in toString()
/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/Messaging/src/com/android/messaging/ui/
DContactIconView.java48 private long mContactId; field in ContactIconView
124 mContactId = contactId; in setImageResourceUri()
133 if ((mContactId > ParticipantData.PARTICIPANT_CONTACT_ID_NOT_RESOLVED in maybeInitializeOnClickListener()
140 ContactUtil.showOrAddContact(view, mContactId, mContactLookupKey, in maybeInitializeOnClickListener()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2Test.java8987 DatabaseAsserts.assertHasDeleteLogGreaterThan(mResolver, ids.mContactId, start); in testContactDelete_hasDeleteLog()
9032 ContactUtil.update(mResolver, ids.mContactId, values); in testContactUpdate_metadataChange()
9043 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testContactUpdate_updatesContactUpdatedTimestamp()
9049 ContactUtil.update(mResolver, ids.mContactId, values); in testContactUpdate_updatesContactUpdatedTimestamp()
9051 long newTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testContactUpdate_updatesContactUpdatedTimestamp()
9074 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactUpdate_updatesContactUpdatedTimestamp()
9080 long newTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactUpdate_updatesContactUpdatedTimestamp()
9090 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactPsuedoDelete_hasDeleteLogForContact()
9094 DatabaseAsserts.assertHasDeleteLogGreaterThan(mResolver, ids.mContactId, baseTime); in testRawContactPsuedoDelete_hasDeleteLogForContact()
9103 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactDelete_hasDeleteLogForContact()
[all …]
/packages/apps/Contacts/src/com/android/contacts/compat/
DAggregationSuggestionsCompat.java39 private long mContactId; field in AggregationSuggestionsCompat.Builder
51 this.mContactId = contactId; in setContactId()
83 builder.appendEncodedPath(String.valueOf(mContactId)); in build()
/packages/apps/Contacts/src/com/android/contacts/editor/
DAggregationSuggestionEngine.java109 private long mContactId; field in AggregationSuggestionEngine
140 if (contactId != mContactId) { in setContactId()
141 mContactId = contactId; in setContactId()
221 .setContactId(mContactId); in buildAggregationSuggestionUri()
235 .setContactId(mContactId); in buildAggregationSuggestionUri()
DJoinContactConfirmationDialogFragment.java62 private long mContactId; field in JoinContactConfirmationDialogFragment
67 mContactId = getArguments().getLong(ARG_JOIN_CONTACT_ID); in onCreate()
79 targetListener.onJoinContactConfirmed(mContactId); in onCreateDialog()
/packages/providers/ContactsProvider/test_common/src/com/android/providers/contacts/testutil/
DDatabaseAsserts.java102 public long mContactId; field in DatabaseAsserts.ContactIdPair
106 this.mContactId = contactId; in ContactIdPair()
/packages/apps/Dialer/java/com/android/dialer/interactions/
DPhoneNumberInteraction.java117 private long mContactId = UNKNOWN_CONTACT_ID; field in PhoneNumberInteraction
292 if (mContactId == UNKNOWN_CONTACT_ID) { in onLoadComplete()
293 mContactId = cursor.getLong(contactIdColumn); in onLoadComplete()