OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mScoreList
(Results
1 - 2
of
2
) sorted by null
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
ContactMatcher.java
157
private final ArrayList<MatchScore>
mScoreList
= new ArrayList<MatchScore>();
166
if (
mScoreList
.size() > mScoreCount) {
167
matchingScore =
mScoreList
.get(mScoreCount);
171
mScoreList
.add(matchingScore);
288
MatchScore score =
mScoreList
.get(i);
315
MatchScore score =
mScoreList
.get(i);
349
List<MatchScore> matches =
mScoreList
.subList(0, mScoreCount);
366
return
mScoreList
.subList(0, mScoreCount).toString();
RawContactMatcher.java
162
private final ArrayList<MatchScore>
mScoreList
= new ArrayList<MatchScore>();
171
if (
mScoreList
.size() > mScoreCount) {
172
matchingScore =
mScoreList
.get(mScoreCount);
176
mScoreList
.add(matchingScore);
290
MatchScore score =
mScoreList
.get(i);
312
MatchScore score =
mScoreList
.get(i);
336
List<MatchScore> matches =
mScoreList
.subList(0, mScoreCount);
353
return
mScoreList
.subList(0, mScoreCount).toString();
Completed in 36 milliseconds