Home
last modified time | relevance | path

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

1234

/art/libartbase/base/
Dhash_set.h97 template <class T, class EmptyFn, class HashFn, class Pred, class Alloc> friend class HashSet; variable
171 class HashSet {
179 using iterator = HashSetIterator<T, HashSet>;
180 using const_iterator = HashSetIterator<const T, const HashSet>;
195 HashSet() : HashSet(kDefaultMinLoadFactor, kDefaultMaxLoadFactor) {} in HashSet() function
196 explicit HashSet(const allocator_type& alloc) noexcept in HashSet() function
197 : HashSet(kDefaultMinLoadFactor, kDefaultMaxLoadFactor, alloc) {} in HashSet()
199 HashSet(double min_load_factor, double max_load_factor) noexcept in HashSet() function
200 : HashSet(min_load_factor, max_load_factor, allocator_type()) {} in HashSet()
201 HashSet(double min_load_factor, double max_load_factor, const allocator_type& alloc) noexcept in HashSet() function
[all …]
Dhash_set_test.cc69 HashSet<std::string, IsEmptyFnString> hash_set; in TEST_F()
85 HashSet<std::string, IsEmptyFnString> hash_set; in TEST_F()
117 HashSet<std::string, IsEmptyFnString> hash_set; in TEST_F()
147 HashSet<std::string, IsEmptyFnString> hash_seta, hash_setb; in TEST_F()
164 HashSet<std::string, IsEmptyFnString> hash_set; in TEST_F()
202 HashSet<std::string, IsEmptyFnString> hash_set; in TEST_F()
220 HashSet<std::string, IsEmptyFnString> hash_set; in TEST_F()
329 HashSet<std::vector<int>, IsEmptyFnVectorInt, VectorIntHashEquals, VectorIntHashEquals> hash_set; in TEST_F()
339 HashSet<std::string, IsEmptyFnString> hash_set; in TEST_F()
361 HashSet<std::string> hash_set; in TEST_F()
[all …]
Dhash_map.h74 class HashMap : public HashSet<std::pair<Key, Value>,
80 using Base = HashSet<std::pair<Key, Value>,
/art/test/1911-get-local-var-table/src/art/
DTest1911.java24 import java.util.HashSet;
112 new HashSet<>(Arrays.asList(
117 new HashSet<>(Arrays.asList(
125 new HashSet<>(Arrays.asList(
128 new HashSet<>(Arrays.asList(
134 new HashSet<>(Arrays.asList(
151 new HashSet<>(Arrays.asList(
194 new HashSet<>(Arrays.asList(Locals.GetLocalVariableTable(m))); in CheckLocalVariableTable()
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/907-get-loaded-classes/src/art/
DTest907.java21 import java.util.HashSet;
47 HashSet<String> classesSet = new HashSet<>(Arrays.asList(classes)); in doTest()
/art/test/2005-pause-all-redefine-multithreaded/src/art/
DTest2005.java111 this.results = new HashSet<>(); in MyThread()
141 public HashSet<String> results;
173 Set<Thread> thread_set = new HashSet<>(Arrays.asList(all_threads)); in doRedefinition()
186 Set<Field> field_set = new HashSet(Arrays.asList(new_fields)); in doRedefinition()
/art/test/062-character-encodings/src/
DMain.java5 import java.util.HashSet;
18 Set<String> needed = new HashSet<String>(standardCharsets); in main()
/art/test/1946-list-descriptors/src-art/art/
DTest1946.java64 check(new HashSet<T>(Arrays.asList(full)).containsAll(Arrays.asList(sub)), msgGen); in checkEq()
70 check(new HashSet<T>(Arrays.asList(full)).containsAll(Arrays.asList(sub)), msgGen); in checkSubset()
/art/dex2oat/
Dcommon_compiler_driver_test.cc130 std::unique_ptr<HashSet<std::string>> CommonCompilerDriverTest::GetImageClasses() { in GetImageClasses()
132 return std::make_unique<HashSet<std::string>>(); in GetImageClasses()
Dcommon_compiler_driver_test.h59 virtual std::unique_ptr<HashSet<std::string>> GetImageClasses();
/art/test/913-heaps/src/art/
DTest913.java26 import java.util.HashSet;
559 public HashSet<String> referrees = new HashSet<>();
595 HashSet<String> completedReferrers = new HashSet<>(); in process()
665 HashSet<String> enabled = new HashSet<>(); in process()
/art/test/995-breakpoints-throw/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/996-breakpoint-obsolete/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/997-single-step/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/993-breakpoints/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/994-breakpoint-line/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/1970-force-early-return-long/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/1971-multi-force-early-return/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/1954-pop-frame-jit/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/1927-exception-event/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/1914-get-local-instance/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/1929-exception-catch-exception/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/1956-pop-frame-jit-calling/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/1935-get-set-current-frame-jit/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();

1234