Home
last modified time | relevance | path

Searched refs:mSelectionArgs2 (Results 1 – 5 of 5) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator.java121 mSelectionArgs2[0] = String.valueOf(contactId); in aggregateContact()
122 mSelectionArgs2[1] = String.valueOf(rawContactId); in aggregateContact()
128 mSelectionArgs2); in aggregateContact()
713 mSelectionArgs2[0] = String.valueOf(rawContactId); in updateMatchScoresBasedOnIdentityMatch()
714 mSelectionArgs2[1] = String.valueOf(mMimeTypeIdIdentity); in updateMatchScoresBasedOnIdentityMatch()
717 mSelectionArgs2, RawContacts.CONTACT_ID, null, null); in updateMatchScoresBasedOnIdentityMatch()
784 mSelectionArgs2[0] = String.valueOf(rawContactId); in updateMatchScoresBasedOnEmailMatches()
785 mSelectionArgs2[1] = String.valueOf(mMimeTypeIdEmail); in updateMatchScoresBasedOnEmailMatches()
788 mSelectionArgs2, null, null, null, SECONDARY_HIT_LIMIT_STRING); in updateMatchScoresBasedOnEmailMatches()
806 mSelectionArgs2[0] = String.valueOf(rawContactId); in updateMatchScoresBasedOnPhoneMatches()
[all …]
DContactAggregator2.java555 mSelectionArgs2[0] = String.valueOf(rawContactId); in updateMatchScoresBasedOnIdentityMatch()
556 mSelectionArgs2[1] = String.valueOf(mMimeTypeIdIdentity); in updateMatchScoresBasedOnIdentityMatch()
559 mSelectionArgs2, RawContacts.CONTACT_ID, null, null); in updateMatchScoresBasedOnIdentityMatch()
609 mSelectionArgs2[0] = String.valueOf(rawContactId); in updateMatchScoresBasedOnEmailMatches()
610 mSelectionArgs2[1] = String.valueOf(mMimeTypeIdEmail); in updateMatchScoresBasedOnEmailMatches()
613 mSelectionArgs2, null, null, null, SECONDARY_HIT_LIMIT_STRING); in updateMatchScoresBasedOnEmailMatches()
671 mSelectionArgs2[0] = String.valueOf(rawContactId); in updateMatchScoresBasedOnPhoneMatches()
672 mSelectionArgs2[1] = useStrictPhoneNumberComparison; in updateMatchScoresBasedOnPhoneMatches()
675 mSelectionArgs2, null, null, null, SECONDARY_HIT_LIMIT_STRING); in updateMatchScoresBasedOnPhoneMatches()
DAbstractContactAggregator.java174 protected String[] mSelectionArgs2 = new String[2]; field in AbstractContactAggregator
1782 mSelectionArgs2[0] = String.valueOf(mDbHelper.getMimeTypeIdForStructuredName()); in updateDisplayNameForContact()
1783 mSelectionArgs2[1] = String.valueOf(contactId); in updateDisplayNameForContact()
1784 final Cursor c = db.rawQuery(DisplayNameQuery.SQL, mSelectionArgs2); in updateDisplayNameForContact()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsProvider2.java1161 private final String[] mSelectionArgs2 = new String[2]; field in ContactsProvider2
5188 mSelectionArgs2[0] = String.valueOf(rawContactId1); in updateAggregationException()
5189 mSelectionArgs2[1] = String.valueOf(rawContactId2); in updateAggregationException()
5192 + AggregationExceptions.RAW_CONTACT_ID2 + "=?", mSelectionArgs2); in updateAggregationException()
5242 mSelectionArgs2[0] = backupId; in queryRawContactId()
5243 mSelectionArgs2[1] = String.valueOf(accountId); in queryRawContactId()
5247 mSelectionArgs2, null, null, null); in queryRawContactId()
5275 mSelectionArgs2[0] = String.valueOf(rawContactId); in queryDataId()
5276 mSelectionArgs2[1] = hashId; in queryDataId()
5280 DataHashQuery.SELECTION, mSelectionArgs2, null, null, null); in queryDataId()
[all …]
DLegacyApiSupport.java187 private String[] mSelectionArgs2 = new String[2]; field in LegacyApiSupport