Home
last modified time | relevance | path

Searched refs:limitedMatches (Results 1 – 1 of 1) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DAbstractContactAggregator.java2027 final List<MatchScore> limitedMatches; in queryMatchingContacts() local
2029 limitedMatches = bestMatches.subList(0, maxSuggestions); in queryMatchingContacts()
2031 limitedMatches = bestMatches; in queryMatchingContacts()
2038 for (int i = 0; i < limitedMatches.size(); i++) { in queryMatchingContacts()
2039 MatchScore matchScore = limitedMatches.get(i); in queryMatchingContacts()
2051 ArrayList<Long> sortedContactIds = new ArrayList<Long>(limitedMatches.size()); in queryMatchingContacts()
2052 for (MatchScore matchScore : limitedMatches) { in queryMatchingContacts()
2059 int[] positionMap = new int[limitedMatches.size()]; in queryMatchingContacts()
2061 long id = limitedMatches.get(i).getContactId(); in queryMatchingContacts()