Searched refs:bestMatches (Results 1 – 1 of 1) sorted by relevance
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | ContactAggregator.java | 1047 List<MatchScore> bestMatches = in updateAggregationAfterVisibilityChange() local 1049 for (MatchScore matchScore : bestMatches) { in updateAggregationAfterVisibilityChange() 1056 bestMatches = in updateAggregationAfterVisibilityChange() 1058 for (MatchScore matchScore : bestMatches) { in updateAggregationAfterVisibilityChange() 2335 List<MatchScore> bestMatches = findMatchingContacts(db, contactId, parameters); in queryAggregationSuggestions() local 2336 return queryMatchingContacts(qb, db, projection, bestMatches, maxSuggestions, filter); in queryAggregationSuggestions() 2355 String[] projection, List<MatchScore> bestMatches, int maxSuggestions, String filter) { in queryMatchingContacts() argument 2359 for (int i = 0; i < bestMatches.size(); i++) { in queryMatchingContacts() 2360 MatchScore matchScore = bestMatches.get(i); in queryMatchingContacts() 2386 Iterator<MatchScore> iter = bestMatches.iterator(); in queryMatchingContacts() [all …]
|