Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
DContactMatcher.java164 MatchScore matchingScore = mScores.get(contactId); in getMatchingScore() local
165 if (matchingScore == null) { in getMatchingScore()
167 matchingScore = mScoreList.get(mScoreCount); in getMatchingScore()
168 matchingScore.reset(contactId); in getMatchingScore()
170 matchingScore = new MatchScore(contactId); in getMatchingScore()
171 mScoreList.add(matchingScore); in getMatchingScore()
174 mScores.put(contactId, matchingScore); in getMatchingScore()
176 return matchingScore; in getMatchingScore()
DRawContactMatcher.java169 MatchScore matchingScore = mScores.get(rawContactId); in getMatchingScore() local
170 if (matchingScore == null) { in getMatchingScore()
172 matchingScore = mScoreList.get(mScoreCount); in getMatchingScore()
173 matchingScore.reset(rawContactId, contactId, accountId); in getMatchingScore()
175 matchingScore = new MatchScore(rawContactId, contactId, accountId); in getMatchingScore()
176 mScoreList.add(matchingScore); in getMatchingScore()
179 mScores.put(rawContactId, matchingScore); in getMatchingScore()
181 return matchingScore; in getMatchingScore()