Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/util/
DVoteResolver.java352 public void add(T value, int voter, Integer withVotes, Date date) { in add() argument
358 if (withVotes == null) { in add()
359 withVotes = maxVotes; // use max (default) in add()
361 withVotes = Math.min(withVotes, maxVotes); // override to lower vote count in add()
363 addInternal(value, voter, info, withVotes, date); // do the add in add()
755 public void add(T value, int voter, Integer withVotes, Date date) { in add() argument
759 organizationToValueAndVote.add(value, voter, withVotes, date); in add()
771 public void add(T value, int voter, Integer withVotes) { in add() argument
776 organizationToValueAndVote.add(value, voter, withVotes, date); in add()