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.java2029 final List<MatchScore> limitedMatches; in queryMatchingContacts() local
2031 limitedMatches = bestMatches.subList(0, maxSuggestions); in queryMatchingContacts()
2033 limitedMatches = bestMatches; in queryMatchingContacts()
2040 for (int i = 0; i < limitedMatches.size(); i++) { in queryMatchingContacts()
2041 MatchScore matchScore = limitedMatches.get(i); in queryMatchingContacts()
2053 ArrayList<Long> sortedContactIds = new ArrayList<Long>(limitedMatches.size()); in queryMatchingContacts()
2054 for (MatchScore matchScore : limitedMatches) { in queryMatchingContacts()
2061 int[] positionMap = new int[limitedMatches.size()]; in queryMatchingContacts()
2063 long id = limitedMatches.get(i).getContactId(); in queryMatchingContacts()