Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/util/
DVoteResolver.java961 HashMap<T, Long> voteCount = makeVoteCountMap(sortedValues); in resolveVotes() local
968 combineInheritanceWithBaileyForVoting(sortedValues, voteCount); in resolveVotes()
974 adjustAnnotationVoteCounts(sortedValues, voteCount); in resolveVotes()
980 long weights[] = setBestNextAndSameVoteValues(sortedValues, voteCount); in resolveVotes()
1032 …ivate void combineInheritanceWithBaileyForVoting(Set<T> sortedValues, HashMap<T, Long> voteCount) { in combineInheritanceWithBaileyForVoting() argument
1043 if (!voteCount.containsKey(hardValue) || !voteCount.containsKey(softValue)) { in combineInheritanceWithBaileyForVoting()
1046 long hardCount = voteCount.get(hardValue); in combineInheritanceWithBaileyForVoting()
1047 long softCount = voteCount.get(softValue); in combineInheritanceWithBaileyForVoting()
1054 voteCount.put(combValue, combinedCount); in combineInheritanceWithBaileyForVoting()
1055 voteCount.put(skipValue, 0L); in combineInheritanceWithBaileyForVoting()
[all …]