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.java162 MatchScore matchingScore = mScores.get(contactId); in getMatchingScore() local
163 if (matchingScore == null) { in getMatchingScore()
165 matchingScore = mScoreList.get(mScoreCount); in getMatchingScore()
166 matchingScore.reset(contactId); in getMatchingScore()
168 matchingScore = new MatchScore(contactId); in getMatchingScore()
169 mScoreList.add(matchingScore); in getMatchingScore()
172 mScores.put(contactId, matchingScore); in getMatchingScore()
174 return matchingScore; in getMatchingScore()
DRawContactMatcher.java167 MatchScore matchingScore = mScores.get(rawContactId); in getMatchingScore() local
168 if (matchingScore == null) { in getMatchingScore()
170 matchingScore = mScoreList.get(mScoreCount); in getMatchingScore()
171 matchingScore.reset(rawContactId, contactId, accountId); in getMatchingScore()
173 matchingScore = new MatchScore(rawContactId, contactId, accountId); in getMatchingScore()
174 mScoreList.add(matchingScore); in getMatchingScore()
177 mScores.put(rawContactId, matchingScore); in getMatchingScore()
179 return matchingScore; in getMatchingScore()