Home
last modified time | relevance | path

Searched refs:mContactId (Results 1 – 13 of 13) 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/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2Test.java8241 DatabaseAsserts.assertHasDeleteLogGreaterThan(mResolver, ids.mContactId, start); in testContactDelete_hasDeleteLog()
8252 List<String[]> records = RawContactUtil.queryByContactId(mResolver, ids.mContactId, in testContactDelete_marksRawContactsForDeletion()
8267 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testContactUpdate_updatesContactUpdatedTimestamp()
8273 ContactUtil.update(mResolver, ids.mContactId, values); in testContactUpdate_updatesContactUpdatedTimestamp()
8275 long newTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testContactUpdate_updatesContactUpdatedTimestamp()
8298 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactUpdate_updatesContactUpdatedTimestamp()
8304 long newTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactUpdate_updatesContactUpdatedTimestamp()
8314 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactPsuedoDelete_hasDeleteLogForContact()
8318 DatabaseAsserts.assertHasDeleteLogGreaterThan(mResolver, ids.mContactId, baseTime); in testRawContactPsuedoDelete_hasDeleteLogForContact()
8327 long baseTime = ContactUtil.queryContactLastUpdatedTimestamp(mResolver, ids.mContactId); in testRawContactDelete_hasDeleteLogForContact()
[all …]
/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/editor/
DAggregationSuggestionView.java62 private long mContactId; field in AggregationSuggestionView
84 mContactId = suggestion.contactId; in bindSuggestion()
145 mListener.onEditAction(Contacts.getLookupUri(mContactId, mLookupKey)); in handleItemClickEvent()
151 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()
503 Uri lookupUri = Contacts.getLookupUri(mContactId, mLookupKey); in onQueryComplete()
/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.java102 public long mContactId; field in DatabaseAsserts.ContactIdPair
106 this.mContactId = contactId; in ContactIdPair()