Home
last modified time | relevance | path

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

/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DVoteResolver.java1052 final Set<T> sortedValues = totals.getKeysetSortedByCount(false, votesThenUcaCollator); in resolveVotes() local
1054 System.out.println("sortedValues :" + sortedValues.toString()); in resolveVotes()
1067 if (sortedValues.size() == 0) { in resolveVotes()
1099 HashMap<T, Long> voteCount = makeVoteCountMap(sortedValues); in resolveVotes()
1106 … bothInheritanceAndBaileyHadVotes = combineInheritanceWithBaileyForVoting(sortedValues, voteCount); in resolveVotes()
1112 adjustAnnotationVoteCounts(sortedValues, voteCount); in resolveVotes()
1118 long weights[] = setBestNextAndSameVoteValues(sortedValues, voteCount); in resolveVotes()
1143 private HashMap<T, Long> makeVoteCountMap(Set<T> sortedValues) { in makeVoteCountMap() argument
1145 for (T value : sortedValues) { in makeVoteCountMap()
1170 …private boolean combineInheritanceWithBaileyForVoting(Set<T> sortedValues, HashMap<T, Long> voteCo… in combineInheritanceWithBaileyForVoting() argument
[all …]
/external/deqp/modules/glshared/
DglsStateChangePerfTestCases.cpp87 vector<deUint64> sortedValues = values; in calculateStats() local
89 std::sort(sortedValues.begin(), sortedValues.end()); in calculateStats()
91 result.median = (double)sortedValues[n]; in calculateStats()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/
DChartGrammaticalForms.java172 Set<String> sortedValues = new TreeSet(feature.getValueComparator()); in getFormattedGrammarInfo() local
179 sortedValues.clear(); in getFormattedGrammarInfo()
180 sortedValues.addAll(values); in getFormattedGrammarInfo()
186 Joiner.on(", ").join(sortedValues)); in getFormattedGrammarInfo()
190 sortedValues.addAll(values); in getFormattedGrammarInfo()
196 Joiner.on(", ").join(sortedValues)); in getFormattedGrammarInfo()
/external/guava/android/guava/src/com/google/common/collect/
DImmutableSortedMap.java720 Object[] sortedValues = new Object[size]; in buildOrThrow() local
737 sortedValues[index] = requireNonNull(values[i]); in buildOrThrow()
742 ImmutableList.<V>asImmutableList(sortedValues)); in buildOrThrow()