Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
DRawContactMatcher.java243 updateSecondaryScore(rawContactId, contactId, accountId, IDENTITY_MATCH_SCORE); in matchIdentity()
247 updateSecondaryScore(rawContactId, contactId, accountId, PHONE_MATCH_SCORE); in updateScoreWithPhoneNumberMatch()
251 updateSecondaryScore(rawContactId, contactId, accountId, EMAIL_MATCH_SCORE); in updateScoreWithEmailMatch()
255 updateSecondaryScore(rawContactId, contactId, accountId, NICKNAME_MATCH_SCORE); in updateScoreWithNicknameMatch()
262 private void updateSecondaryScore(long rawContactId, long contactId, long accountId, in updateSecondaryScore() method in RawContactMatcher
264 getMatchingScore(rawContactId, contactId, accountId).updateSecondaryScore(score); in updateSecondaryScore()
DContactMatcher.java245 updateSecondaryScore(contactId, PHONE_MATCH_SCORE); in updateScoreWithPhoneNumberMatch()
249 updateSecondaryScore(contactId, EMAIL_MATCH_SCORE); in updateScoreWithEmailMatch()
253 updateSecondaryScore(contactId, NICKNAME_MATCH_SCORE); in updateScoreWithNicknameMatch()
260 private void updateSecondaryScore(long contactId, int score) { in updateSecondaryScore() method in ContactMatcher
261 getMatchingScore(contactId).updateSecondaryScore(score); in updateSecondaryScore()
DMatchScore.java85 public void updateSecondaryScore(int score) { in updateSecondaryScore() method in MatchScore