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.java864 HashMap<T, Long> voteCount = makeVoteCountMap(sortedValues); in resolveVotes() local
871 combineInheritanceWithBaileyForVoting(sortedValues, voteCount); in resolveVotes()
877 adjustAnnotationVoteCounts(sortedValues, voteCount); in resolveVotes()
883 long weights[] = setBestNextAndSameVoteValues(sortedValues, voteCount); in resolveVotes()
935 …ivate void combineInheritanceWithBaileyForVoting(Set<T> sortedValues, HashMap<T, Long> voteCount) { in combineInheritanceWithBaileyForVoting() argument
946 if (!voteCount.containsKey(hardValue) || !voteCount.containsKey(softValue)) { in combineInheritanceWithBaileyForVoting()
949 long hardCount = voteCount.get(hardValue); in combineInheritanceWithBaileyForVoting()
950 long softCount = voteCount.get(softValue); in combineInheritanceWithBaileyForVoting()
957 voteCount.put(combValue, combinedCount); in combineInheritanceWithBaileyForVoting()
958 voteCount.put(skipValue, 0L); in combineInheritanceWithBaileyForVoting()
[all …]