/art/test/1911-get-local-var-table/src/art/ |
D | Test1911.java | 26 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/ |
D | hash_set.h | 97 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 …]
|
D | hash_set_test.cc | 69 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 …]
|
D | hash_map.h | 78 class HashMap : public HashSet<std::pair<Key, Value>, 84 using Base = HashSet<std::pair<Key, Value>,
|
/art/test/907-get-loaded-classes/src/art/ |
D | Test907.java | 21 import java.util.HashSet; 47 HashSet<String> classesSet = new HashSet<>(Arrays.asList(classes)); in doTest()
|
/art/test/2005-pause-all-redefine-multithreaded/src/art/ |
D | Test2005.java | 111 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/ |
D | Main.java | 5 import java.util.HashSet; 18 Set<String> needed = new HashSet<String>(standardCharsets); in main()
|
/art/test/1946-list-descriptors/src-art/art/ |
D | Test1946.java | 64 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/ |
D | common_compiler_driver_test.cc | 131 std::unique_ptr<HashSet<std::string>> CommonCompilerDriverTest::GetImageClasses() { in GetImageClasses() 133 return std::make_unique<HashSet<std::string>>(); in GetImageClasses()
|
D | common_compiler_driver_test.h | 60 virtual std::unique_ptr<HashSet<std::string>> GetImageClasses();
|
/art/libartservice/service/javatests/com/android/server/art/testing/ |
D | TestingUtilsTest.java | 35 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/ |
D | OdsignTestUtils.java | 47 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<>();
|
D | DeviceState.java | 30 import java.util.HashSet; 51 private Set<String> mTempFiles = new HashSet<>(); 52 private Set<String> mMountPoints = new HashSet<>();
|
/art/tools/ |
D | PresubmitJsonLinter.java | 21 import java.util.HashSet; 40 private static final Set<String> RESULTS = new HashSet<>();
|
/art/test/913-heaps/src/art/ |
D | Test913.java | 26 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/ |
D | compiler_options.h | 287 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/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/1916-get-set-current-frame/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/1928-exception-event-exception/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/1925-self-frame-pop/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/993-breakpoints/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/1968-force-early-return/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/1913-get-set-local-objects/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/1926-missed-frame-pop/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/1953-pop-frame/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|