Searched refs:NameLookupMatchQueryWithParameter (Results 1 – 2 of 2) sorted by relevance
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | ContactAggregator2.java | 644 Cursor c = db.query(NameLookupMatchQueryWithParameter.TABLE, in updateMatchScoresBasedOnNameMatches() 645 NameLookupMatchQueryWithParameter.COLUMNS, builder.getSelection(), null, null, null, in updateMatchScoresBasedOnNameMatches() 649 long rId = c.getLong(NameLookupMatchQueryWithParameter.RAW_CONTACT_ID); in updateMatchScoresBasedOnNameMatches() 650 long contactId = c.getLong(NameLookupMatchQueryWithParameter.CONTACT_ID); in updateMatchScoresBasedOnNameMatches() 651 long accountId = c.getLong(NameLookupMatchQueryWithParameter.ACCOUNT_ID); in updateMatchScoresBasedOnNameMatches() 652 String name = c.getString(NameLookupMatchQueryWithParameter.NAME); in updateMatchScoresBasedOnNameMatches() 654 int nameTypeB = c.getInt(NameLookupMatchQueryWithParameter.NAME_TYPE); in updateMatchScoresBasedOnNameMatches()
|
D | AbstractContactAggregator.java | 1053 protected interface NameLookupMatchQueryWithParameter { interface in AbstractContactAggregator 1133 Cursor c = db.query(NameLookupMatchQueryWithParameter.TABLE, in updateMatchScoresBasedOnNameMatches() 1134 NameLookupMatchQueryWithParameter.COLUMNS, builder.getSelection(), null, null, null, in updateMatchScoresBasedOnNameMatches() 1138 long contactId = c.getLong(NameLookupMatchQueryWithParameter.CONTACT_ID); in updateMatchScoresBasedOnNameMatches() 1139 String name = c.getString(NameLookupMatchQueryWithParameter.NAME); in updateMatchScoresBasedOnNameMatches() 1141 int nameTypeB = c.getInt(NameLookupMatchQueryWithParameter.NAME_TYPE); in updateMatchScoresBasedOnNameMatches()
|