Home
last modified time | relevance | path

Searched refs:HashSet (Results 1 – 25 of 211) sorted by relevance

123456789

/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/testing/
DFontLanguages.java10 import java.util.HashSet;
636 scriptLangMap.put(ScriptTag.DFLT, new HashSet<String>()); in FontLanguages()
637 scriptLangMap.put(ScriptTag.brai, new HashSet<String>()); in FontLanguages()
638 scriptLangMap.put(ScriptTag.math, new HashSet<String>()); in FontLanguages()
639 scriptLangMap.put(ScriptTag.musc, new HashSet<String>()); in FontLanguages()
640 scriptLangMap.put(ScriptTag.musi, new HashSet<String>()); in FontLanguages()
657 scriptLangMap.put(scriptTag, new HashSet<String>()); in addLangScriptMap()
664 Set<String> langs = new HashSet<String>(); in get()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRBBINode.java11 import java.util.HashSet;
113 fFirstPosSet = new HashSet<RBBINode>(); in RBBINode()
114 fLastPosSet = new HashSet<RBBINode>(); in RBBINode()
115 fFollowPos = new HashSet<RBBINode>(); in RBBINode()
141 fFirstPosSet = new HashSet<RBBINode>(other.fFirstPosSet);
142 fLastPosSet = new HashSet<RBBINode>(other.fLastPosSet);
143 fFollowPos = new HashSet<RBBINode>(other.fFollowPos);
DCanonicalIterator.java12 import java.util.HashSet;
180 Set<String> subpermute = new HashSet<String>(); in permute()
251 Set<String> result = new HashSet<String>(); in getEquivalents()
253 Set<String> permutations = new HashSet<String>(); in getEquivalents()
291 Set<String> result = new HashSet<String>(); in getEquivalents2()
445 …private static final Set<String> SET_WITH_NULL_STRING = new HashSet<String>(); // constant, don't …
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DRBBINode.java12 import java.util.HashSet;
114 fFirstPosSet = new HashSet<RBBINode>(); in RBBINode()
115 fLastPosSet = new HashSet<RBBINode>(); in RBBINode()
116 fFollowPos = new HashSet<RBBINode>(); in RBBINode()
142 fFirstPosSet = new HashSet<RBBINode>(other.fFirstPosSet);
143 fLastPosSet = new HashSet<RBBINode>(other.fLastPosSet);
144 fFollowPos = new HashSet<RBBINode>(other.fFollowPos);
DPluralSamples.java16 import java.util.HashSet;
168 foundKeywords.put(keyword, set = new HashSet<FixedDecimal>()); in addRelation()
194 Set<FixedDecimal> toAddTo = new HashSet<FixedDecimal>(); in fractions()
196 Set<Integer> result = new HashSet<Integer>(); in fractions()
201 Set<String> keywords = new HashSet<String>(); in fractions()
279 HashSet<Double> subtractedSet = new HashSet<Double>(values); in getStatus()
DCanonicalIterator.java13 import java.util.HashSet;
176 Set<String> subpermute = new HashSet<String>(); in permute()
247 Set<String> result = new HashSet<String>(); in getEquivalents()
249 Set<String> permutations = new HashSet<String>(); in getEquivalents()
287 Set<String> result = new HashSet<String>(); in getEquivalents2()
441 …private static final Set<String> SET_WITH_NULL_STRING = new HashSet<String>(); // constant, don't …
/third_party/rust/crates/bindgen/bindgen/ir/analysis/
Dhas_destructor.rs8 use crate::{HashMap, HashSet};
30 have_destructor: HashSet<ItemId>,
72 type Output = HashSet<ItemId>;
75 let have_destructor = HashSet::default(); in new()
172 impl<'ctx> From<HasDestructorAnalysis<'ctx>> for HashSet<ItemId> { implementation
Dmod.rs214 use crate::{HashMap, HashSet};
299 reachable: HashMap<Node, HashSet<Node>>,
307 type Output = HashMap<Node, HashSet<Node>>;
335 .or_insert_with(HashSet::default) in constrain()
344 .or_insert_with(HashSet::default) in constrain()
370 impl<'a> From<ReachableFrom<'a>> for HashMap<Node, HashSet<Node>> {
382 fn nodes<A>(nodes: A) -> HashSet<Node> in monotone()
Dhas_type_param_in_array.rs9 use crate::{HashMap, HashSet};
30 has_type_parameter_in_array: HashSet<ItemId>,
89 type Output = HashSet<ItemId>;
92 let has_type_parameter_in_array = HashSet::default(); in new()
248 impl<'ctx> From<HasTypeParameterInArray<'ctx>> for HashSet<ItemId> { implementation
Dhas_float.rs9 use crate::{HashMap, HashSet};
30 has_float: HashSet<ItemId>,
83 type Output = HashSet<ItemId>;
86 let has_float = HashSet::default(); in new()
248 impl<'ctx> From<HasFloat<'ctx>> for HashSet<ItemId> { implementation
/third_party/libphonenumber/java/internal/prefixmapper/test/com/google/i18n/phonenumbers/prefixmapper/
DMappingFileProviderTest.java27 import java.util.HashSet;
53 private static HashSet<String> newHashSet(String... strings) { in newHashSet()
54 HashSet<String> set = new HashSet<String>(); in newHashSet()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/personname/
DPersonNameFormatterImpl.java10 import java.util.HashSet;
48 options = new HashSet<>(); in PersonNameFormatterImpl()
90 gnFirstLocales = new HashSet<>(); in PersonNameFormatterImpl()
92 snFirstLocales = new HashSet<>(); in PersonNameFormatterImpl()
181 …private final Set<String> LOCALES_THAT_DONT_USE_SPACES = new HashSet<>(Arrays.asList("ja", "zh", "…
207 Set<PersonName.FieldModifier> modifiers = new HashSet<>(); in nameIsGnFirst()
281 …String givenName = name.getFieldValue(PersonName.NameField.GIVEN, new HashSet<PersonName.FieldModi… in getNameLocale()
/third_party/rust/crates/serde/test_suite/tests/macros/
Dmod.rs28 HashSet::new()
31 let mut set = HashSet::new();
37 let mut set = HashSet::with_hasher(BuildHasherDefault::<$hasher>::default());
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DExtensionRegistry.java38 import java.util.HashSet;
191 HashSet<ExtensionInfo> extensions = new HashSet<ExtensionInfo>(); in getAllMutableExtensionsByExtendedType()
208 HashSet<ExtensionInfo> extensions = new HashSet<ExtensionInfo>(); in getAllImmutableExtensionsByExtendedType()
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
DUnicodeSetPerf.java10 import java.util.HashSet;
28 HashSet hs;
44 hs = new HashSet(); in setup()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/subsetter/
DHintStripper.java22 import java.util.HashSet;
31 Set<TableSubsetter> temp = new HashSet<TableSubsetter>();
DTableSubsetterImpl.java20 import java.util.HashSet;
32 Set<Integer> temp = new HashSet<Integer>(tags.length); in TableSubsetterImpl()
DDumbSubsetter.java23 import java.util.HashSet;
35 Set<TableSubsetter> temp = new HashSet<TableSubsetter>();
DRenumberingSubsetter.java23 import java.util.HashSet;
32 Set<TableSubsetter> temp = new HashSet<TableSubsetter>();
/third_party/rust/crates/cxx/syntax/
Dset.rs74 use std::collections::HashSet;
79 pub struct UnorderedSet<T>(HashSet<T>);
86 UnorderedSet(HashSet::new()) in new()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DFormattedValueTest.java15 import java.util.HashSet;
156 HashSet<Format.Field> uniqueFields = new HashSet<>(); in checkFormattedValue()
157 Set<Class<?>> uniqueFieldClasses = new HashSet<>(); in checkFormattedValue()
248 cfpos.constrainClass(HashSet.class); in checkFormattedValue()
/third_party/rust/crates/rustix/tests/fs/
Dreaddir.rs59 use std::collections::HashSet; in test_raw_dir()
65 fn read_raw_entries<Fd: AsFd>(dir: &mut RawDir<Fd>) -> HashSet<String> { in test_raw_dir()
66 let mut out = HashSet::new(); in test_raw_dir()
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/
DMidiPortSelector.java32 import java.util.HashSet;
40 protected HashSet<MidiPortWrapper> mBusyPorts = new HashSet<MidiPortWrapper>();
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DFormattedValueTest.java14 import java.util.HashSet;
158 HashSet<Format.Field> uniqueFields = new HashSet<>(); in checkFormattedValue()
159 Set<Class<?>> uniqueFieldClasses = new HashSet<>(); in checkFormattedValue()
260 cfpos.constrainClass(HashSet.class); in checkFormattedValue()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DInternalLocaleBuilder.java14 import java.util.HashSet;
30 private HashSet<CaseInsensitiveString> _uattributes;
94 _uattributes = new HashSet<CaseInsensitiveString>(4); in addUnicodeLocaleAttribute()
286HashSet<CaseInsensitiveChar> processedExtensions = new HashSet<CaseInsensitiveChar>(bcpExtensions.… in setExtensions()
416 _uattributes = new HashSet<CaseInsensitiveString>(4); in setLocale()
577 _uattributes = new HashSet<CaseInsensitiveString>(4); in setUnicodeLocaleExtension()

123456789