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.java123 mSelectionArgs2[0] = String.valueOf(contactId); in aggregateContact()
124 mSelectionArgs2[1] = String.valueOf(rawContactId); in aggregateContact()
130 mSelectionArgs2); in aggregateContact()
715 mSelectionArgs2[0] = String.valueOf(rawContactId); in updateMatchScoresBasedOnIdentityMatch()
716 mSelectionArgs2[1] = String.valueOf(mMimeTypeIdIdentity); in updateMatchScoresBasedOnIdentityMatch()
719 mSelectionArgs2, RawContacts.CONTACT_ID, null, null); in updateMatchScoresBasedOnIdentityMatch()
786 mSelectionArgs2[0] = String.valueOf(rawContactId); in updateMatchScoresBasedOnEmailMatches()
787 mSelectionArgs2[1] = String.valueOf(mMimeTypeIdEmail); in updateMatchScoresBasedOnEmailMatches()
790 mSelectionArgs2, null, null, null, SECONDARY_HIT_LIMIT_STRING); in updateMatchScoresBasedOnEmailMatches()
808 mSelectionArgs2[0] = String.valueOf(rawContactId); in updateMatchScoresBasedOnPhoneMatches()
[all …]
DContactAggregator2.java557 mSelectionArgs2[0] = String.valueOf(rawContactId); in updateMatchScoresBasedOnIdentityMatch()
558 mSelectionArgs2[1] = String.valueOf(mMimeTypeIdIdentity); in updateMatchScoresBasedOnIdentityMatch()
561 mSelectionArgs2, RawContacts.CONTACT_ID, null, null); in updateMatchScoresBasedOnIdentityMatch()
611 mSelectionArgs2[0] = String.valueOf(rawContactId); in updateMatchScoresBasedOnEmailMatches()
612 mSelectionArgs2[1] = String.valueOf(mMimeTypeIdEmail); in updateMatchScoresBasedOnEmailMatches()
615 mSelectionArgs2, null, null, null, SECONDARY_HIT_LIMIT_STRING); in updateMatchScoresBasedOnEmailMatches()
673 mSelectionArgs2[0] = String.valueOf(rawContactId); in updateMatchScoresBasedOnPhoneMatches()
674 mSelectionArgs2[1] = useStrictPhoneNumberComparison; in updateMatchScoresBasedOnPhoneMatches()
677 mSelectionArgs2, null, null, null, SECONDARY_HIT_LIMIT_STRING); in updateMatchScoresBasedOnPhoneMatches()
DAbstractContactAggregator.java176 protected String[] mSelectionArgs2 = new String[2]; field in AbstractContactAggregator
1791 mSelectionArgs2[0] = String.valueOf(mDbHelper.getMimeTypeIdForStructuredName()); in updateDisplayNameForContact()
1792 mSelectionArgs2[1] = String.valueOf(contactId); in updateDisplayNameForContact()
1793 final Cursor c = db.rawQuery(DisplayNameQuery.SQL, mSelectionArgs2); in updateDisplayNameForContact()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsProvider2.java1134 private final String[] mSelectionArgs2 = new String[2]; field in ContactsProvider2
4934 mSelectionArgs2[0] = String.valueOf(rawContactId1); in updateAggregationException()
4935 mSelectionArgs2[1] = String.valueOf(rawContactId2); in updateAggregationException()
4938 + AggregationExceptions.RAW_CONTACT_ID2 + "=?", mSelectionArgs2); in updateAggregationException()
4988 mSelectionArgs2[0] = backupId; in queryRawContactId()
4989 mSelectionArgs2[1] = String.valueOf(accountId); in queryRawContactId()
4993 mSelectionArgs2, null, null, null); in queryRawContactId()
5021 mSelectionArgs2[0] = String.valueOf(rawContactId); in queryDataId()
5022 mSelectionArgs2[1] = hashId; in queryDataId()
5026 DataHashQuery.SELECTION, mSelectionArgs2, null, null, null); in queryDataId()
[all …]
DLegacyApiSupport.java185 private String[] mSelectionArgs2 = new String[2]; field in LegacyApiSupport