Home
last modified time | relevance | path

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

/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCounter.java127 public Set<T> getKeysetSortedByCount(boolean ascending) { in getKeysetSortedByCount() method in Counter
128 return getKeysetSortedByCount(ascending, null); in getKeysetSortedByCount()
131 public Set<T> getKeysetSortedByCount(boolean ascending, Comparator<T> byValue) { in getKeysetSortedByCount() method in Counter
/external/cldr/tools/java/org/unicode/cldr/util/
DCounter2.java128 public Set<T> getKeysetSortedByCount(boolean ascending) { in getKeysetSortedByCount() method in Counter2
129 return getKeysetSortedByCount(ascending, null); in getKeysetSortedByCount()
132 public Set<T> getKeysetSortedByCount(boolean ascending, Comparator<T> byValue) { in getKeysetSortedByCount() method in Counter2
DCounter.java170 public Set<T> getKeysetSortedByCount(boolean ascending) { in getKeysetSortedByCount() method in Counter
171 return getKeysetSortedByCount(ascending, null); in getKeysetSortedByCount()
174 public Set<T> getKeysetSortedByCount(boolean ascending, Comparator<T> byValue) { in getKeysetSortedByCount() method in Counter
DVoteResolver.java504 Iterator<T> iterator = items.getKeysetSortedByCount(false).iterator(); in getTotals()
914 final Set<T> sortedValues = totals.getKeysetSortedByCount(false, votesThenUcaCollator); in resolveVotes()
1844 for (T value : totals.getKeysetSortedByCount(false, votesThenUcaCollator)) { in getResolvedVoteCounts()
DVettingViewer.java905 Set<Subtype> sortedBySize = subtypeCounterTotals.getKeysetSortedByCount(false); in showSubtypes()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
DCounter.java130 public Set<T> getKeysetSortedByCount(boolean ascending) { in getKeysetSortedByCount() method in Counter
131 return getKeysetSortedByCount(ascending, null); in getKeysetSortedByCount()
134 public Set<T> getKeysetSortedByCount(boolean ascending, Comparator<T> byValue) { in getKeysetSortedByCount() method in Counter
/external/cldr/tools/java/org/unicode/cldr/tool/
DShowLanguageData.java47 for (String language : langCounter.getKeysetSortedByCount(false)) { in main()
DScriptPopulations.java54 for (String lang : langScriptLitPop.getKeysetSortedByCount(false)) { in main()
DSearchXml.java161 for (String item : kountRegexMatches.getKeysetSortedByCount(false)) { in main()
167 for (String item : uniqueData.getKeysetSortedByCount(false)) { in main()
173 for (String path : starCounter.getKeysetSortedByCount(false)) { in main()
DGenerateMaximalLocales.java1072 …String script = maxData.languagesToScripts.get(language).getKeysetSortedByCount(true).iterator().n… in tryDifferentAlgorithm()
1076 …String region = maxData.languagesToRegions.get(language).getKeysetSortedByCount(true).iterator().n… in tryDifferentAlgorithm()
1088 …String language = maxData.scriptsToLanguages.get(script).getKeysetSortedByCount(true).iterator().n… in tryDifferentAlgorithm()
1092 …String region = maxData.scriptsToRegions.get(script).getKeysetSortedByCount(true).iterator().next(… in tryDifferentAlgorithm()
1105 …String language = maxData.regionsToLanguages.get(region).getKeysetSortedByCount(true).iterator().n… in tryDifferentAlgorithm()
1109 …String script = maxData.regionsToScripts.get(region).getKeysetSortedByCount(true).iterator().next(… in tryDifferentAlgorithm()
1120 Set<R2<String, String>> keysetSortedByCount = data.getKeysetSortedByCount(true); in tryDifferentAlgorithm()
DDiffCldr.java144 Set<String> localeList = localeCounter.getKeysetSortedByCount(false); in main()
DShowLocaleCoverage.java418 for (String key : completionData.getKeysetSortedByCount(false)) { in addCompletionList()
/external/cldr/tools/java/org/unicode/cldr/draft/
DGenerateLanguageData.java130 ArrayList<String> top = new ArrayList<>(regions.getKeysetSortedByCount(false)); in run()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestUtilities.java261 new ArrayList<String>(counter.getKeysetSortedByCount(true, in TestCounter()
266 counter.getKeysetSortedByCount(true, uca))); in TestCounter()
270 counter.getKeysetSortedByCount(false, ucaDown))); in TestCounter()
274 counter.getKeysetSortedByCount(false, uca))); in TestCounter()
DLanguageTest.java144 String biggestLanguage = c.getKeysetSortedByCount(false).iterator() in TestThatLanguagesHaveScript()