Home
last modified time | relevance | path

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

1234

/art/test/1911-get-local-var-table/src/art/
DTest1911.java26 import java.util.HashSet;
132 new HashSet<>(Arrays.asList(
137 new HashSet<>(Arrays.asList(
145 new HashSet<>(Arrays.asList(
148 new HashSet<>(Arrays.asList(
154 new HashSet<>(Arrays.asList(
171 new HashSet<>(Arrays.asList(
191 new HashSet<>(Arrays.asList(
202 new HashSet<>(Arrays.asList(
240 new HashSet<>(Arrays.asList(Locals.GetLocalVariableTable(m))); in CheckLocalVariableTable()
/art/libartbase/base/
Dhash_set.h97 template <class T, class EmptyFn, class HashFn, class Pred, class Alloc> friend class HashSet; variable
179 class HashSet {
187 using iterator = HashSetIterator<T, HashSet>;
188 using const_iterator = HashSetIterator<const T, const HashSet>;
203 HashSet() : HashSet(kDefaultMinLoadFactor, kDefaultMaxLoadFactor) {} in HashSet() function
204 explicit HashSet(const allocator_type& alloc) noexcept in HashSet() function
205 : HashSet(kDefaultMinLoadFactor, kDefaultMaxLoadFactor, alloc) {} in HashSet()
207 HashSet(double min_load_factor, double max_load_factor) noexcept in HashSet() function
208 : HashSet(min_load_factor, max_load_factor, allocator_type()) {} in HashSet()
209 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.h78 class HashMap : public HashSet<std::pair<Key, Value>,
84 using Base = HashSet<std::pair<Key, Value>,
/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.cc131 std::unique_ptr<HashSet<std::string>> CommonCompilerDriverTest::GetImageClasses() { in GetImageClasses()
133 return std::make_unique<HashSet<std::string>>(); in GetImageClasses()
Dcommon_compiler_driver_test.h60 virtual std::unique_ptr<HashSet<std::string>> GetImageClasses();
/art/libartservice/service/javatests/com/android/server/art/testing/
DTestingUtilsTest.java35 import java.util.HashSet;
137 var a = new HashSet<Integer>(); in testDeepEqualsOtherContainerNotSupported()
139 var b = new HashSet<Integer>(); in testDeepEqualsOtherContainerNotSupported()
/art/test/odsign/test-src/com/android/tests/odsign/
DOdsignTestUtils.java47 import java.util.HashSet;
129 Set<String> mappedFiles = new HashSet<>(); in getMappedArtifacts()
172 Set<String> artifacts = new HashSet<>(); in getExpectedBootImage()
181 Set<String> artifacts = new HashSet<>(); in getExpectedBootImage()
209 Set<String> artifacts = new HashSet<>(); in getSystemServerExpectedArtifacts()
341 Set<String> filenames = new HashSet<>(); in getApexDataDalvikCacheFilenames()
458 Set<String> existingFiles = new HashSet<>();
DDeviceState.java30 import java.util.HashSet;
51 private Set<String> mTempFiles = new HashSet<>();
52 private Set<String> mMountPoints = new HashSet<>();
/art/tools/
DPresubmitJsonLinter.java21 import java.util.HashSet;
40 private static final Set<String> RESULTS = new HashSet<>();
/art/test/913-heaps/src/art/
DTest913.java26 import java.util.HashSet;
560 public HashSet<String> referrees = new HashSet<>();
596 HashSet<String> completedReferrers = new HashSet<>(); in process()
666 HashSet<String> enabled = new HashSet<>(); in process()
/art/compiler/driver/
Dcompiler_options.h287 const HashSet<std::string>& GetImageClasses() const { in GetImageClasses()
400 HashSet<std::string> image_classes_;
404 HashSet<std::string> preloaded_classes_;
/art/test/1954-pop-frame-jit/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/1916-get-set-current-frame/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/1928-exception-event-exception/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/1925-self-frame-pop/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/1968-force-early-return/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/1913-get-set-local-objects/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/1926-missed-frame-pop/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();
/art/test/1953-pop-frame/src/art/
DBreakpoint.java20 import java.util.HashSet;
74 private Set<BP> breaks = new HashSet<>();

1234