/art/tools/class2greylist/test/src/com/android/class2greylist/ |
D | ApiResolverTest.java | 29 import java.util.Set; 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 | 29 import java.util.Set; 49 Set<String> parsedFlags = new HashSet<String>(); in testExportPropertiesNoEscaping() 65 Set<String> parsedFlags = new HashSet<String>(); in testExportPropertiesEscapeQuotes()
|
/art/test/922-properties/src/art/ |
D | Test922.java | 19 import java.util.Set; 28 Set<String> recommendedProperties = getRecommendedProperties(); in doTest() 35 Set<String> allProperties = getAllProperties(); in doTest() 37 Set<String> retained = new TreeSet<String>(recommendedProperties); in doTest() 40 Set<String> missing = new TreeSet<String>(recommendedProperties); in doTest() 45 Set<String> nonRecommended = new TreeSet<String>(allProperties); in doTest() 62 private static Set<String> getRecommendedProperties() { in getRecommendedProperties() 63 Set<String> keys = new TreeSet<String>(); in getRecommendedProperties() 73 private static Set<String> getAllProperties() { in getAllProperties() 74 Set<String> keys = new TreeSet<String>(); in getAllProperties() [all …]
|
/art/test/1911-get-local-var-table/src/art/ |
D | Test1911.java | 25 import java.util.Set; 110 public static Set<Locals.VariableDescription>[] CONSTRUCTOR_VARIABLES = new Set[] { 123 public static Set<Locals.VariableDescription>[] DO_NOTHING_VARIABLES = new Set[] { 132 public static Set<Locals.VariableDescription>[] DO_SOMETHING_VARIABLES = new Set[] { 192 Set<Locals.VariableDescription>[] possible_vars) { in CheckLocalVariableTable() 193 Set<Locals.VariableDescription> real_vars = in CheckLocalVariableTable() 195 for (Set<Locals.VariableDescription> pos : possible_vars) { in CheckLocalVariableTable()
|
/art/test/1913-get-set-local-objects/ |
D | expected.txt | 8 …c static void art.Test1913.ObjectMethod(java.lang.Runnable) set value: TestClass1("Set TestClass1") 9 Value is 'TestClass1("Set TestClass1")' (class: class art.Test1913$TestClass1) 11 …st1913.ObjectMethod(java.lang.Runnable) set value: TestClass1ext("TestClass1("Set TestClass1ext")") 12 …Value is 'TestClass1ext("TestClass1("Set TestClass1ext")")' (class: class art.Test1913$TestClass1e… 14 …c static void art.Test1913.ObjectMethod(java.lang.Runnable) set value: TestClass2("Set TestClass2") 15 Value is 'TestClass2("Set TestClass2")' (class: class art.Test1913$TestClass2) 17 …1913.ObjectMethod(java.lang.Runnable) set value: TestClass2impl("TestClass2("Set TestClass2impl")") 18 …Value is 'TestClass2impl("TestClass2("Set TestClass2impl")")' (class: class art.Test1913$TestClass… 26 …tatic void art.Test1913.InterfaceMethod(java.lang.Runnable) set value: TestClass1("Set TestClass1") 27 Value is 'TestClass1("Set TestClass1")' (class: class art.Test1913$TestClass1) [all …]
|
/art/test/1966-get-set-local-objects-no-table/ |
D | expected.txt | 8 ….TestCases1966.ObjectMethod(java.util.function.IntConsumer) set value: TestClass1("Set TestClass1") 9 Value is 'TestClass1("Set TestClass1")' (class: class art.Test1966$TestClass1) 11 …tMethod(java.util.function.IntConsumer) set value: TestClass1ext("TestClass1("Set TestClass1ext")") 12 …Value is 'TestClass1ext("TestClass1("Set TestClass1ext")")' (class: class art.Test1966$TestClass1e… 14 ….TestCases1966.ObjectMethod(java.util.function.IntConsumer) set value: TestClass2("Set TestClass2") 15 Value is 'TestClass2("Set TestClass2")' (class: class art.Test1966$TestClass2) 17 …ethod(java.util.function.IntConsumer) set value: TestClass2impl("TestClass2("Set TestClass2impl")") 18 …Value is 'TestClass2impl("TestClass2("Set TestClass2impl")")' (class: class art.Test1966$TestClass… 26 …ses1966.CastInterfaceMethod(java.util.function.IntConsumer) set value: TestClass1("Set TestClass1") 27 Value is 'TestClass1("Set TestClass1")' (class: class art.Test1966$TestClass1) [all …]
|
/art/tools/class2greylist/src/com/android/class2greylist/ |
D | AnnotationConsumer.java | 4 import java.util.Set; 15 Set<String> parsedFlags); in consume()
|
D | HiddenapiFlagsWriter.java | 13 import java.util.Set; 24 Set<String> parsedFlags) { in consume() 34 private static List<String> asSortedList(Set<String> s) { in asSortedList()
|
D | AnnotationPropertyWriter.java | 14 import java.util.Set; 21 private final Set<String> mColumns; 36 Set<String> parsedFlags) { in consume()
|
D | ApiResolver.java | 23 import java.util.Set; 30 private final Set<PackageAndClassName> mPublicApiClasses; 41 public ApiResolver(Set<String> publicApis) { in ApiResolver()
|
D | CovariantReturnTypeHandler.java | 11 import java.util.Set; 34 private final Set<String> mPublicApis; 37 public CovariantReturnTypeHandler(AnnotationConsumer consumer, Set<String> publicApis, in CovariantReturnTypeHandler()
|
/art/libartbase/base/ |
D | variant_map_test.cc | 57 fm.Set(FruitMap::Apple, 1); in TEST() 62 fm.Set(FruitMap::Apple, 5); in TEST() 67 fm.Set(FruitMap::Orange, 555.0); in TEST() 85 fm.Set(FruitMap::Label, std::string("hello_world")); in TEST() 92 fm.Set(FruitMap::Label, *ptr); in TEST() 106 fmFilled.Set(FruitMap::Apple, 1); in TEST() 107 fmFilled.Set(FruitMap::Orange, 555.0); in TEST() 136 fmMoved2.Set(FruitMap::Apple, 12345); // This value will be clobbered after the move in TEST()
|
/art/test/1984-structural-redefine-field-trace/ |
D | expected.txt | 7 …rt.Test1984$Transform.tick() MODIFY: public static boolean art.Test1984$Transform.tock Set to: true 11 …t.Test1984$Transform.tick() MODIFY: public static boolean art.Test1984$Transform.tock Set to: false 13 …art.Test1984$Transform.tick() MODIFY: public static int art.Test1984$Transform.count_down Set to: 1 18 …rt.Test1984$Transform.tick() MODIFY: public static boolean art.Test1984$Transform.tock Set to: true 22 …t.Test1984$Transform.tick() MODIFY: public static boolean art.Test1984$Transform.tock Set to: false 24 …art.Test1984$Transform.tick() MODIFY: public static int art.Test1984$Transform.count_down Set to: 0 26 …rt.Test1984$Transform.tick() MODIFY: public static boolean art.Test1984$Transform.boom Set to: true
|
/art/test/497-inlining-and-class-loader/ |
D | clear_dex_cache.cc | 56 int_array->Set(2u * i, index); in Java_Main_cloneResolvedMethods() 57 int_array->Set(2u * i + 1u, reinterpret_cast32<jint>(method)); in Java_Main_cloneResolvedMethods() 60 long_array->Set(2u * i, index); in Java_Main_cloneResolvedMethods() 61 long_array->Set(2u * i + 1u, reinterpret_cast64<jlong>(method)); in Java_Main_cloneResolvedMethods()
|
/art/test/062-character-encodings/src/ |
D | Main.java | 9 import java.util.Set; 18 Set<String> needed = new HashSet<String>(standardCharsets); in main()
|
/art/test/046-reflect/ |
D | expected.txt | 129 type1(java.util.Set<java.lang.String>) equals type2(java.util.Set<java.lang.String>) 130 type1(java.util.Set<java.lang.String>) equals type3(java.util.Set<java.lang.String>) 131 type1(java.util.Set<java.lang.String>) hashCode equals type2(java.util.Set<java.lang.String>) hashC… 132 type1(java.util.Set<java.lang.String>) hashCode equals type3(java.util.Set<java.lang.String>) hashC…
|
/art/runtime/gc/accounting/ |
D | heap_bitmap-inl.h | 67 inline bool HeapBitmap::Set(const mirror::Object* obj, const LargeObjectSetVisitor& visitor) { in Set() function 70 return bitmap->Set(obj); in Set() 75 return lo_bitmap->Set(obj); in Set()
|
D | mod_union_table_test.cc | 61 space->GetLiveBitmap()->Set(obj); in AllocObjectArray() 208 obj1->Set(0, obj2); in RunTest() 209 obj2->Set(0, obj3); in RunTest() 210 obj3->Set(0, obj4); in RunTest() 211 obj4->Set(0, obj1); in RunTest() 217 obj1->Set(1, other_space_ref1); in RunTest() 218 obj2->Set(3, other_space_ref2); in RunTest()
|
D | space_bitmap_test.cc | 73 space_bitmap.Set(obj); in TEST_F() 102 bitmap.Set(obj); in TEST_F() 127 bitmap.Set(reinterpret_cast<mirror::Object*>(heap_begin + i)); in TEST_F() 173 space_bitmap.Set(reinterpret_cast<mirror::Object*>(heap_begin + offset)); in RunTest()
|
/art/runtime/gc/ |
D | system_weak_test.cc | 94 void Set(GcRoot<mirror::Object> obj) in Set() function 144 cswh.Set(GcRoot<mirror::Object>(s.Get())); in TEST_F() 165 cswh.Set(GcRoot<mirror::Object>(mirror::String::AllocFromModifiedUtf8(soa.Self(), "ABC"))); in TEST_F() 189 cswh.Set(GcRoot<mirror::Object>(s.Get())); in TEST_F()
|
D | heap_test.cc | 80 array->Set<false>(j, string); in TEST_F() 94 bitmap.Set(fake_end_of_heap_object); in TEST_F()
|
/art/openjdkjvmti/ |
D | object_tagging.cc | 74 bool ObjectTagTable::Set(art::ObjPtr<art::mirror::Object> obj, jlong new_tag) { in Set() function in openjdkjvmti::ObjectTagTable 79 return JvmtiWeakTable<jlong>::Set(obj, new_tag); in Set()
|
/art/runtime/ |
D | imtable.h | 57 void Set(size_t index, ArtMethod* method, PointerSize pointer_size) { in Set() function 73 Set(i, data[i], pointer_size); in Populate()
|
D | parsed_options.cc | 432 runtime_options->Set(M::BootClassPathDexList, boot_class_path); in ProcessSpecialOptions() 438 runtime_options->Set(M::CompilerCallbacksPtr, compiler_callbacks); in ProcessSpecialOptions() 448 runtime_options->Set(M::ImageInstructionSet, image_isa); in ProcessSpecialOptions() 455 runtime_options->Set(M::HookIsSensitiveThread, hook_is_sensitive_thread); in ProcessSpecialOptions() 467 runtime_options->Set(M::HookVfprintf, hook_vfprintf); in ProcessSpecialOptions() 478 runtime_options->Set(M::HookExit, hook_exit); in ProcessSpecialOptions() 489 runtime_options->Set(M::HookAbort, hook_abort); in ProcessSpecialOptions() 584 args.Set(M::UseJitCompilation, false); in DoParse() 642 args.Set(M::BackgroundGc, BackgroundGcOption { background_collector_type_ }); in DoParse() 664 args.Set(M::Image, image); in DoParse() [all …]
|
/art/runtime/mirror/ |
D | method_type.cc | 69 dst_ptypes->Set(i, src_ptypes->Get(i + 1)); in CloneWithoutLeadingParameter() 92 dst_ptypes->Set(i, src_ptypes->Get(i)); in CollectTrailingArguments() 94 dst_ptypes->Set(start_index, collector_class.Get()); in CollectTrailingArguments()
|