Searched defs:candidateNameType (Results 1 - 1 of 1) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
H A DContactMatcher.java136 * corresponding to the {@code candidateNameType} and {@code nameType}.
138 private static void setScoreRange(int candidateNameType, int nameType, int scoreFrom, int scoreTo) { argument
139 int index = nameType * NameLookupType.TYPE_COUNT + candidateNameType;
145 * Returns the lower range for the match score for the given {@code candidateNameType} and
148 private static int getMinScore(int candidateNameType, int nameType) { argument
149 int index = nameType * NameLookupType.TYPE_COUNT + candidateNameType;
154 * Returns the upper range for the match score for the given {@code candidateNameType} and
157 private static int getMaxScore(int candidateNameType, int nameType) { argument
158 int index = nameType * NameLookupType.TYPE_COUNT + candidateNameType;
281 public void matchName(long contactId, int candidateNameType, Strin argument
[all...]

Completed in 65 milliseconds