HomeSort by relevance Sort by last modified time
    Searched refs:TreeSet (Results 51 - 75 of 437) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/cldr/tools/java/org/unicode/cldr/tool/
ShowCoverageLevels.java 4 import java.util.TreeSet;
25 Relation<Level, String> values = new Relation(new EnumMap<Level, String>(Level.class), TreeSet.class);
FindAttributeValueDifferences.java 9 import java.util.TreeSet;
66 Set<String> elements = new TreeSet<>(newValues.keySet());
72 Set<String> attributes = new TreeSet<>(newSubmap.keySet());
89 private static TreeSet<String> showDiff(String element, String attribute, Set<String> newAttValues, Set<String> oldAttValues, String title) {
90 TreeSet<String> currentAttributeValues = new TreeSet<>(newAttValues);
FindPluralDifferences.java 10 import java.util.TreeSet;
69 TreeSet justOldLocales = new TreeSet(oldLocales);
75 TreeSet justNewLocales = new TreeSet(newLocales);
124 + "\t" + new TreeSet(pluralRangesLocales));
GenerateItemCounts.java 18 import java.util.TreeSet;
72 static Relation<String, String> path2value = Relation.of(new TreeMap<String, Set<String>>(), TreeSet.class);
134 path2value = Relation.of(new TreeMap<String, Set<String>>(), TreeSet.class);
152 static final Relation<String, DtdType> ELEMENTS_OCCURRING = Relation.of(new TreeMap(), TreeSet.class);
153 static final Relation<String, DtdType> ELEMENTS_POSSIBLE = Relation.of(new TreeMap(), TreeSet.class);
154 static final Relation<String, Row.R2<DtdType, String>> ATTRIBUTES_OCCURRING = Relation.of(new TreeMap(), TreeSet.class);
155 static final Relation<String, Row.R2<DtdType, String>> ATTRIBUTES_POSSIBLE = Relation.of(new TreeMap(), TreeSet.class);
214 Set<DtdType> deprecated = new TreeSet();
220 Set<DtdType> notDeprecated = new TreeSet(possible);
224 Set<DtdType> noOccur = new TreeSet(possible)
    [all...]
GenerateStatistics.java 18 import java.util.TreeSet;
58 Set<String> languages = new TreeSet<String>(col), countries = new TreeSet<String>(col), draftLanguages = new TreeSet<String>(
59 col), draftCountries = new TreeSet<String>(col);
60 Set<Object> nativeLanguages = new TreeSet<Object>(), nativeCountries = new TreeSet<Object>(), draftNativeLanguages = new TreeSet<Object>(),
61 draftNativeCountries = new TreeSet<Object>();
120 contents = new TreeSet<String>(contents); // make writabl
    [all...]
CLDRCompare.java 5 import java.util.TreeSet;
43 TreeSet<String> files = new TreeSet<String>();
SubdivisionNames.java 10 import java.util.TreeSet;
48 TreeSet<String> result = new TreeSet<>();
ShowPathHeaderDescriptions.java 7 import java.util.TreeSet;
40 Set<PathHeader> pathHeaders = new TreeSet<>();
92 Set<String> urls = new TreeSet<>();
146 TreeSet<String> temp = new TreeSet<>(valueToKey.keys());
158 Set<String> remaining = new TreeSet<>();
CompareStockDatetime.java 7 import java.util.TreeSet;
32 // new Relation(new TreeMap(), TreeSet.class);
55 lengthToSkeletonToLocales.put(key, skeletonToLocales = Relation.of(new TreeMap<String, Set<String>>(), TreeSet.class));
GenerateEnums.java 18 import java.util.TreeSet;
61 private Set<String> cldrCodes = new TreeSet<String>();
81 private Set<String> scripts = new TreeSet<String>();
83 private Set<String> languages = new TreeSet<String>();
114 Set<String> unused = new TreeSet<String>(validCurrencyCodes);
351 Set<String> regions = new TreeSet<String>();
375 Set<String> availableCodes = new TreeSet<String>(sc.getAvailableCodes("territory"));
377 Set<String> missing = new TreeSet<String>(availableCodes);
394 Set<String> UNValues = new TreeSet<String>(enum_UN.values());
425 currencyCodes = new TreeSet<String>()
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
TreeMultimap.java 27 import java.util.TreeSet;
130 * <p>Creates an empty {@code TreeSet} for a collection of values for one key.
132 * @return a new {@code TreeSet} containing a collection of values for one
136 return new TreeSet<V>(valueComparator);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue97/
YamlSortedSetTest.java 21 import java.util.TreeSet;
69 Collection<Object> result = new TreeSet<Object>();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/
FilterPropertyToDumpTest.java 20 import java.util.TreeSet;
94 Set<Property> filtered = new TreeSet<Property>();
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
CommentsInserter.java 33 import java.util.TreeSet;
55 private void insertComments(CompilationUnit cu, TreeSet<Comment> comments) {
82 void insertComments(Node node, TreeSet<Comment> commentsToAttribute) {
101 TreeSet<Comment> commentsInsideChild = new TreeSet<>(NODE_BY_BEGIN_POSITION);
154 private void attributeLineCommentsOnSameLine(TreeSet<Comment> commentsToAttribute, List<Node> children) {
  /external/cldr/tools/java/org/unicode/cldr/test/
CLDRTest.java 24 import java.util.TreeSet;
81 private Set<String> surveyInfo = new TreeSet<String>();
176 Set<String> okValues = new TreeSet<String>();
239 Set<String> counts = new TreeSet<String>();
445 if (totalvalues == null) totalResult.put(code, totalvalues = new TreeSet<String>());
467 Set<String> collisions = new TreeSet<String>();
575 s = new TreeSet<String>();
698 group_territory.put(type, new TreeSet(CldrUtility.splitList(contains, ' ', true)));
706 language_scripts.put(language, new TreeSet<String>());
708 language_scripts.put(language, new TreeSet<String>(CldrUtility.splitList(scripts, ' ', true)))
    [all...]
TestMetadata.java 10 import java.util.TreeSet;
25 // Set allKeys = new TreeSet();
30 // Set<String> elements = new TreeSet<String>();
31 // Set<String> attributes = new TreeSet<String>();
35 // Set<String> suppElements = new TreeSet<String>();
36 // Set<String> suppAttributes = new TreeSet<String>();
41 // Set<String> allElements = new TreeSet<String>();
44 // Set<String> allAttributes = new TreeSet<String>();
52 // Set<String> allAttributeOrder = new TreeSet<String>();
76 // Set<String> allElementOrder = new TreeSet<String>()
    [all...]
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestScriptMetadata.java 12 import java.util.TreeSet;
52 for (String script : new TreeSet<String>(ScriptMetadata.getScripts())) {
102 Set<String> missingScripts = new TreeSet<String>();
161 Set<String> bads = new TreeSet<String>();
182 Set<Row.R3<IdUsage, String, String>> lines = new TreeSet<Row.R3<IdUsage, String, String>>();
212 Set<String> scripts = new TreeSet<String>(ScriptMetadata.getScripts());
253 TreeSet<String> b = With.in(bRaw).toCollection(
254 ScriptMetadata.TO_SHORT_SCRIPT, new TreeSet<String>());
256 Set<String> a_b = new TreeSet<String>(a);
258 Set<String> b_a = new TreeSet<String>(b)
    [all...]
LikelySubtagsTest.java 9 import java.util.TreeSet;
45 final Set<String> languages = new TreeSet<String>();
46 final Set<String> scripts = new TreeSet<String>();
47 final Set<String> regions = new TreeSet<String>();
48 final Set<String> scriptRegion = new TreeSet<String>();
49 final Set<String> languageScript = new TreeSet<String>();
50 final Set<String> languageRegion = new TreeSet<String>();
51 final Set<String> all = new TreeSet<String>();
280 TreeSet<String> metadataScripts = new TreeSet<String>
    [all...]
TestLocalCurrency.java 9 import java.util.TreeSet;
86 localSymbols = new TreeSet<String>();
100 regionLocales = new TreeSet<String>();
StandardCodesTest.java 5 import java.util.TreeSet;
27 Set<Organization> extraOrgs = new TreeSet<>();
TestCollationMapMaker.java 7 import java.util.TreeSet;
50 TreeSet.class);
TestDTDAttributes.java 12 import java.util.TreeSet;
118 TreeSet.class);
121 TreeSet.class);
124 TreeSet.class);
164 Set<String> nondistinguishing = new TreeSet<String>(
169 Set<String> distinguishing = new TreeSet<String>(
175 Set<String> both = new TreeSet<String>(
205 suppData.keySet(), new TreeSet<R2<String, String>>());
206 Set<R2<String, String>> same = new TreeSet<R2<String, String>>();
255 suppData.keySet(), new TreeSet<String>())
    [all...]
TestIntMap.java 13 import java.util.TreeSet;
32 Set<String> samples = new TreeSet<String>();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SafeTreeSet.java 25 import java.util.TreeSet;
28 * A wrapper around {@code TreeSet} that aggressively checks to see if elements
44 this(new TreeSet<E>());
48 this(new TreeSet<E>(collection));
52 this(new TreeSet<E>(comparator));
56 this(new TreeSet<E>(set));
  /external/snakeyaml/src/test/java/examples/collections/
TypeSafeSetImplementationsTest.java 22 import java.util.TreeSet;
35 SortedSet<String> sortedSet = new TreeSet<String>();
40 SortedSet<Developer> developers = new TreeSet<Developer>();
53 SortedSet<String> sortedSet = new TreeSet<String>();
58 SortedSet<Developer> developers = new TreeSet<Developer>();

Completed in 926 milliseconds

1 23 4 5 6 7 8 91011>>