Home
last modified time | relevance | path

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

/external/cldr/tools/java/org/unicode/cldr/util/
DVoteResolver.java914 final Set<T> sortedValues = totals.getKeysetSortedByCount(false, votesThenUcaCollator); in resolveVotes() local
916 System.out.println("sortedValues :" + sortedValues.toString()); in resolveVotes()
929 if (sortedValues.size() == 0) { in resolveVotes()
961 HashMap<T, Long> voteCount = makeVoteCountMap(sortedValues); in resolveVotes()
968 combineInheritanceWithBaileyForVoting(sortedValues, voteCount); in resolveVotes()
974 adjustAnnotationVoteCounts(sortedValues, voteCount); in resolveVotes()
980 long weights[] = setBestNextAndSameVoteValues(sortedValues, voteCount); in resolveVotes()
1005 private HashMap<T, Long> makeVoteCountMap(Set<T> sortedValues) { in makeVoteCountMap() argument
1007 for (T value : sortedValues) { in makeVoteCountMap()
1032 …private void combineInheritanceWithBaileyForVoting(Set<T> sortedValues, HashMap<T, Long> voteCount… 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/guava/android/guava/src/com/google/common/collect/
DImmutableSortedMap.java518 Object[] sortedValues = new Object[size]; in build() local
533 sortedValues[index] = values[i]; in build()
538 ImmutableList.<V>asImmutableList(sortedValues)); in build()