HomeSort by relevance Sort by last modified time
    Searched defs:HashSet (Results 1 - 25 of 50) sorted by null

1 2

  /frameworks/base/tools/preload2/src/com/android/preload/
DumpData.java 21 import java.util.HashSet;
85 ret.put(e.getValue(), new HashSet<String>());
  /libcore/ojluni/src/main/java/java/util/
HashSet.java 41 * the <tt>HashSet</tt> instance's size (the number of elements) plus the
56 * Set s = Collections.synchronizedSet(new HashSet(...));</pre>
89 public class HashSet<E>
104 public HashSet() {
117 public HashSet(Collection<? extends E> c) {
131 public HashSet(int initialCapacity, float loadFactor) {
143 public HashSet(int initialCapacity) {
160 HashSet(int initialCapacity, float loadFactor, boolean dummy) {
247 * Returns a shallow copy of this <tt>HashSet</tt> instance: the elements
255 HashSet<E> newSet = (HashSet<E>) super.clone()
    [all...]
  /art/libartbase/base/
hash_set.h 65 class HashSet {
110 size_t NextNonEmptySlot(size_t index, const HashSet* hash_set) const {
119 friend class HashSet;
129 using iterator = BaseIterator<T, HashSet>;
130 using const_iterator = BaseIterator<const T, const HashSet>;
145 HashSet() : HashSet(kDefaultMinLoadFactor, kDefaultMaxLoadFactor) {}
147 HashSet(double min_load_factor, double max_load_factor) noexcept
159 explicit HashSet(const allocator_type& alloc) noexcept
173 HashSet(const HashSet& other) noexcep
    [all...]
  /libcore/ojluni/src/main/java/sun/security/util/
DisabledAlgorithmConstraints.java 35 import java.util.HashSet;
266 new HashSet<>());
307 new HashSet<>());
  /prebuilts/go/darwin-x86/src/runtime/
hash_test.go 84 type HashSet struct {
89 func newHashSet() *HashSet {
90 return &HashSet{make(map[uintptr]struct{}), 0}
92 func (s *HashSet) add(h uintptr) {
96 func (s *HashSet) addS(x string) {
99 func (s *HashSet) addB(x []byte) {
102 func (s *HashSet) addS_seed(x string, seed uintptr) {
105 func (s *HashSet) check(t *testing.T) {
173 func twoNonZero(h *HashSet, n int) {
252 func setbits(h *HashSet, b []byte, i int, k int)
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
hash_test.go 84 type HashSet struct {
89 func newHashSet() *HashSet {
90 return &HashSet{make(map[uintptr]struct{}), 0}
92 func (s *HashSet) add(h uintptr) {
96 func (s *HashSet) addS(x string) {
99 func (s *HashSet) addB(x []byte) {
102 func (s *HashSet) addS_seed(x string, seed uintptr) {
105 func (s *HashSet) check(t *testing.T) {
173 func twoNonZero(h *HashSet, n int) {
252 func setbits(h *HashSet, b []byte, i int, k int)
    [all...]
  /external/v8/tools/clang/blink_gc_plugin/tests/heap/
stubs.h 96 class HashSet {
260 class HeapHashSet : public HashSet<T, void, void, HeapAllocator> { };
  /external/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/heap/
stubs.h 96 class HashSet {
260 class HeapHashSet : public HashSet<T, void, void, HeapAllocator> { };
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
BindingGraphValidator.java 50 import java.util.HashSet;
173 new HashSet<DependencyRequest>());
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/file/
DefaultFileSystemProvider2Test.java 50 import java.util.HashSet;
403 Set<OpenOption> openOptions = new HashSet<>();
528 Set<OpenOption> openOptions = new HashSet<>();
593 provider.newByteChannel(null, new HashSet<>(), new MockFileAttribute<>());
603 provider.newByteChannel(filesSetup.getTestPath(), new HashSet<>(), null);
  /prebuilts/tools/common/intellij-core/171.2455.10/
intellij-core.jar 
  /external/guice/extensions/persist/lib/
hsqldb.jar 
  /prebuilts/devtools/tools/lib/
uast-162.2228.14.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/uast/162.2228.14/
uast-162.2228.14.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/com-intellij/uast/145.597.4/
uast-145.597.4.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/tools/common/uast/
uast-145.597.3.jar 
uast-162.2228.14.jar 
  /external/kotlinc/lib/
kotlin-compiler.jar 
  /prebuilts/ktlint/
ktlint-android-all.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 

Completed in 438 milliseconds

1 2