Home
last modified time | relevance | path

Searched refs:mContactId (Results 1 – 10 of 10) 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/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/
DJoinContactConfirmationDialogFragment.java62 private long mContactId; field in JoinContactConfirmationDialogFragment
67 mContactId = getArguments().getLong(ARG_JOIN_CONTACT_ID); in onCreate()
79 targetListener.onJoinContactConfirmed(mContactId); in onCreateDialog()
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()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2Test.java8859 DatabaseAsserts.assertHasDeleteLogGreaterThan(mResolver, ids.mContactId, start); in testContactDelete_hasDeleteLog()
8904 ContactUtil.update(mResolver, ids.mContactId, values); in testContactUpdate_metadataChange()
8915 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testContactUpdate_updatesContactUpdatedTimestamp()
8921 ContactUtil.update(mResolver, ids.mContactId, values); in testContactUpdate_updatesContactUpdatedTimestamp()
8923 long newTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testContactUpdate_updatesContactUpdatedTimestamp()
8946 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactUpdate_updatesContactUpdatedTimestamp()
8952 long newTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactUpdate_updatesContactUpdatedTimestamp()
8962 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactPsuedoDelete_hasDeleteLogForContact()
8966 DatabaseAsserts.assertHasDeleteLogGreaterThan(mResolver, ids.mContactId, baseTime); in testRawContactPsuedoDelete_hasDeleteLogForContact()
8975 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactDelete_hasDeleteLogForContact()
[all …]
/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()