/art/tools/class2greylist/test/src/com/android/class2greylist/ |
D | ApiResolverTest.java | 28 import java.util.HashSet; 36 Set<String> publicApis = Collections.unmodifiableSet(new HashSet<>( in testFindPublicAlternativeExactly() 46 Set<String> publicApis = Collections.unmodifiableSet(new HashSet<>( in testFindPublicAlternativeDeducedPackageName() 56 Set<String> publicApis = Collections.unmodifiableSet(new HashSet<>( in testFindPublicAlternativeDeducedPackageAndClassName() 66 Set<String> publicApis = Collections.unmodifiableSet(new HashSet<>( in testFindPublicAlternativeDeducedParameterTypes() 75 Set<String> publicApis = Collections.unmodifiableSet(new HashSet<>( in testFindPublicAlternativeFailDueToMultipleParameterTypes() 88 Set<String> publicApis = Collections.unmodifiableSet(new HashSet<>( in testFindPublicAlternativeFailNoAlternative() 98 Set<String> publicApis = Collections.unmodifiableSet(new HashSet<>( in testFindPublicAlternativeFailNoAlternativeNoParameterTypes() 107 Set<String> publicApis = Collections.unmodifiableSet(new HashSet<>()); in testNoPublicClassAlternatives() 117 Set<String> publicApis = Collections.unmodifiableSet(new HashSet<>( in testPublicAlternativesJustPackageAndClassName() [all …]
|
D | AnnotationPropertyWriterTest.java | 27 import java.util.HashSet; 49 Set<String> parsedFlags = new HashSet<String>(); in testExportPropertiesNoEscaping() 65 Set<String> parsedFlags = new HashSet<String>(); in testExportPropertiesEscapeQuotes()
|
/art/test/1911-get-local-var-table/src/art/ |
D | Test1911.java | 24 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()
|
/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/libartbase/base/ |
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_set.h | 97 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 197 HashSet(double min_load_factor, double max_load_factor) noexcept in HashSet() function 209 explicit HashSet(const allocator_type& alloc) noexcept in HashSet() function 223 HashSet(const HashSet& other) noexcept in HashSet() function 243 HashSet(HashSet&& other) noexcept in HashSet() function 265 HashSet(const uint8_t* ptr, bool make_copy_of_data, size_t* read_count) noexcept { in HashSet() function [all …]
|
D | hash_map.h | 57 class HashMap : public HashSet<std::pair<Key, Value>, 63 using Base = HashSet<std::pair<Key, Value>,
|
/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/tools/class2greylist/src/com/android/class2greylist/ |
D | AnnotationPropertyWriter.java | 11 import java.util.HashSet; 26 mColumns = new HashSet<>(); in AnnotationPropertyWriter() 32 mColumns = new HashSet<>(); in AnnotationPropertyWriter()
|
D | ApiResolver.java | 21 import java.util.HashSet; 53 .collect(Collectors.toCollection(HashSet::new)); in ApiResolver()
|
/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 | 59 virtual std::unique_ptr<HashSet<std::string>> GetImageClasses();
|
/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/test/913-heaps/src/art/ |
D | Test913.java | 26 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/1955-pop-frame-jit-called/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/997-single-step/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/1964-add-to-dex-classloader-file/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/994-breakpoint-line/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/1966-get-set-local-objects-no-table/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/1956-pop-frame-jit-calling/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/1912-get-set-local-primitive/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/1941-dispose-stress/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/1967-get-set-local-bad-slot/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|
/art/test/1914-get-local-instance/src/art/ |
D | Breakpoint.java | 20 import java.util.HashSet; 74 private Set<BP> breaks = new HashSet<>();
|