OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:matchingScore
(Results
1 - 2
of
2
) sorted by null
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
ContactMatcher.java
164
MatchScore
matchingScore
= mScores.get(contactId);
165
if (
matchingScore
== null) {
167
matchingScore
= mScoreList.get(mScoreCount);
168
matchingScore
.reset(contactId);
170
matchingScore
= new MatchScore(contactId);
171
mScoreList.add(
matchingScore
);
174
mScores.put(contactId,
matchingScore
);
176
return
matchingScore
;
RawContactMatcher.java
169
MatchScore
matchingScore
= mScores.get(rawContactId);
170
if (
matchingScore
== null) {
172
matchingScore
= mScoreList.get(mScoreCount);
173
matchingScore
.reset(rawContactId, contactId, accountId);
175
matchingScore
= new MatchScore(rawContactId, contactId, accountId);
176
mScoreList.add(
matchingScore
);
179
mScores.put(rawContactId,
matchingScore
);
181
return
matchingScore
;
Completed in 40 milliseconds