Searched refs:NameLookupMatchQueryWithParameter (Results 1 – 2 of 2) sorted by relevance
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | ContactAggregator2.java | 642 Cursor c = db.query(NameLookupMatchQueryWithParameter.TABLE, in updateMatchScoresBasedOnNameMatches() 643 NameLookupMatchQueryWithParameter.COLUMNS, builder.getSelection(), null, null, null, in updateMatchScoresBasedOnNameMatches() 647 long rId = c.getLong(NameLookupMatchQueryWithParameter.RAW_CONTACT_ID); in updateMatchScoresBasedOnNameMatches() 648 long contactId = c.getLong(NameLookupMatchQueryWithParameter.CONTACT_ID); in updateMatchScoresBasedOnNameMatches() 649 long accountId = c.getLong(NameLookupMatchQueryWithParameter.ACCOUNT_ID); in updateMatchScoresBasedOnNameMatches() 650 String name = c.getString(NameLookupMatchQueryWithParameter.NAME); in updateMatchScoresBasedOnNameMatches() 652 int nameTypeB = c.getInt(NameLookupMatchQueryWithParameter.NAME_TYPE); in updateMatchScoresBasedOnNameMatches()
|
D | AbstractContactAggregator.java | 1050 protected interface NameLookupMatchQueryWithParameter { interface in AbstractContactAggregator 1125 Cursor c = db.query(NameLookupMatchQueryWithParameter.TABLE, in updateMatchScoresBasedOnNameMatches() 1126 NameLookupMatchQueryWithParameter.COLUMNS, builder.getSelection(), null, null, null, in updateMatchScoresBasedOnNameMatches() 1130 long contactId = c.getLong(NameLookupMatchQueryWithParameter.CONTACT_ID); in updateMatchScoresBasedOnNameMatches() 1131 String name = c.getString(NameLookupMatchQueryWithParameter.NAME); in updateMatchScoresBasedOnNameMatches() 1133 int nameTypeB = c.getInt(NameLookupMatchQueryWithParameter.NAME_TYPE); in updateMatchScoresBasedOnNameMatches()
|