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()
803 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()
668 mSelectionArgs2[0] = String.valueOf(rawContactId); in updateMatchScoresBasedOnPhoneMatches()
669 mSelectionArgs2[1] = mDbHelper.getUseStrictPhoneNumberComparisonParameter(); in updateMatchScoresBasedOnPhoneMatches()
672 mSelectionArgs2, null, null, null, SECONDARY_HIT_LIMIT_STRING); in updateMatchScoresBasedOnPhoneMatches()
DAbstractContactAggregator.java176 protected String[] mSelectionArgs2 = new String[2]; field in AbstractContactAggregator
1784 mSelectionArgs2[0] = String.valueOf(mDbHelper.getMimeTypeIdForStructuredName()); in updateDisplayNameForContact()
1785 mSelectionArgs2[1] = String.valueOf(contactId); in updateDisplayNameForContact()
1786 final Cursor c = db.rawQuery(DisplayNameQuery.SQL, mSelectionArgs2); in updateDisplayNameForContact()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsProvider2.java1201 private final String[] mSelectionArgs2 = new String[2]; field in ContactsProvider2
4904 mSelectionArgs2[0] = String.valueOf(rawContactId1); in updateAggregationException()
4905 mSelectionArgs2[1] = String.valueOf(rawContactId2); in updateAggregationException()
4908 + AggregationExceptions.RAW_CONTACT_ID2 + "=?", mSelectionArgs2); in updateAggregationException()
4967 mSelectionArgs2[0] = backupId; in queryRawContactId()
4968 mSelectionArgs2[1] = String.valueOf(accountId); in queryRawContactId()
4972 mSelectionArgs2, null, null, null); in queryRawContactId()
5000 mSelectionArgs2[0] = String.valueOf(rawContactId); in queryDataId()
5001 mSelectionArgs2[1] = hashId; in queryDataId()
5005 DataHashQuery.SELECTION, mSelectionArgs2, null, null, null); in queryDataId()
[all …]
DLegacyApiSupport.java185 private String[] mSelectionArgs2 = new String[2]; field in LegacyApiSupport