Searched refs:voteCount (Results 1 – 1 of 1) sorted by relevance
961 HashMap<T, Long> voteCount = makeVoteCountMap(sortedValues); in resolveVotes() local968 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() argument1043 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 …]