/art/test/545-tracing-and-jit/src/ |
D | Main.java | 171 Set set = new HashSet(); in fillJit() local 172 set.add("foo"); in fillJit() 173 set.addAll(set); in fillJit() 174 set.clear(); in fillJit() 175 set.contains("foo"); in fillJit() 176 set.containsAll(set); in fillJit() 177 set.equals(set); in fillJit() 178 set.hashCode(); in fillJit() 179 set.isEmpty(); in fillJit() 180 set.iterator(); in fillJit() [all …]
|
/art/test/712-varhandle-invocations/src/ |
D | VarHandleTypeConversionTests.java | 162 vh.set(bytes, index, newValue); in doTest() 248 vh.set(bb, index, newValue); in doTest() 279 vh.set(bb, index, newValue); in doTest() 305 vh.set(true); in doTest() 307 vh.set((byte) 3); in doTest() 312 vh.set('c'); in doTest() 317 vh.set((short) 1); in doTest() 322 vh.set((int) 1); in doTest() 327 vh.set((long) 1); in doTest() 332 vh.set((float) 1.0f); in doTest() [all …]
|
/art/test/901-hello-ti-agent/src/art/ |
D | Test901.java | 30 set(0); // OTHER in run() 31 set(1); // GC in run() 32 set(2); // CLASS in run() 33 set(4); // JNI in run() 34 set(8); // Error. in run() 39 private static void set(int i) { in set() method in Test901
|
/art/test/1966-get-set-local-objects-no-table/ |
D | expected.txt | 5 …lic static void art_test.TestCases1966.ObjectMethod(java.util.function.IntConsumer) set value: null 8 …c void art_test.TestCases1966.ObjectMethod(java.util.function.IntConsumer) set value: TestClass1("… 11 …c void art_test.TestCases1966.ObjectMethod(java.util.function.IntConsumer) set value: TestClass1ex… 14 …c void art_test.TestCases1966.ObjectMethod(java.util.function.IntConsumer) set value: TestClass2("… 17 …c void art_test.TestCases1966.ObjectMethod(java.util.function.IntConsumer) set value: TestClass2im… 23 …tic void art_test.TestCases1966.CastInterfaceMethod(java.util.function.IntConsumer) set value: null 26 …art_test.TestCases1966.CastInterfaceMethod(java.util.function.IntConsumer) set value: TestClass1("… 29 …art_test.TestCases1966.CastInterfaceMethod(java.util.function.IntConsumer) set value: TestClass1ex… 32 …estCases1966.CastInterfaceMethod(java.util.function.IntConsumer) failed to set value TestClass2("S… 35 …estCases1966.CastInterfaceMethod(java.util.function.IntConsumer) failed to set value TestClass2imp… [all …]
|
/art/test/1913-get-set-local-objects/ |
D | expected.txt | 5 "SetNull" on public static void art.Test1913.ObjectMethod(java.lang.Runnable) set value: null 8 "SetTestClass1" on public static void art.Test1913.ObjectMethod(java.lang.Runnable) set value: Test… 11 "SetTestClass1ext" on public static void art.Test1913.ObjectMethod(java.lang.Runnable) set value: T… 14 "SetTestClass2" on public static void art.Test1913.ObjectMethod(java.lang.Runnable) set value: Test… 17 "SetTestClass2impl" on public static void art.Test1913.ObjectMethod(java.lang.Runnable) set value: … 23 "SetNull" on public static void art.Test1913.InterfaceMethod(java.lang.Runnable) set value: null 26 "SetTestClass1" on public static void art.Test1913.InterfaceMethod(java.lang.Runnable) set value: T… 29 "SetTestClass1ext" on public static void art.Test1913.InterfaceMethod(java.lang.Runnable) set value… 32 …lic static void art.Test1913.InterfaceMethod(java.lang.Runnable) failed to set value TestClass2("S… 35 "SetTestClass2impl" on public static void art.Test1913.InterfaceMethod(java.lang.Runnable) set valu… [all …]
|
/art/compiler/optimizing/ |
D | gvn.cc | 425 ValueSet* set = nullptr; in VisitBasicBlock() local 432 set = new (&allocator_) ValueSet(&allocator_); in VisitBasicBlock() 442 set = dominator_set; in VisitBasicBlock() 451 set = new (&allocator_) ValueSet(&allocator_, *dominator_set); in VisitBasicBlock() 454 set = FindSetFor(recyclable); in VisitBasicBlock() 456 set->PopulateFrom(*dominator_set); in VisitBasicBlock() 460 if (!set->IsEmpty()) { in VisitBasicBlock() 469 set->Clear(); in VisitBasicBlock() 473 set->Kill(side_effects_.GetLoopEffects(block)); in VisitBasicBlock() 477 set->IntersectWith(FindSetFor(predecessor)); in VisitBasicBlock() [all …]
|
/art/runtime/ |
D | intern_table-inl.h | 45 UnorderedSet set(ptr, /*make copy*/false, &read_count); in AddTableFromMemory() 51 visitor(set); in AddTableFromMemory() 52 if (!set.empty()) { in AddTableFromMemory() 53 strong_interns_.AddInternStrings(std::move(set), is_boot_image); in AddTableFromMemory()
|
/art/test/1912-get-set-local-primitive/ |
D | expected.txt | 17 "SetInt" on public static void art.Test1912.IntMethod(java.lang.Runnable) set value: 2147483647 20 "SetLong" on public static void art.Test1912.IntMethod(java.lang.Runnable) failed to set value 9223… 23 "SetFloat" on public static void art.Test1912.IntMethod(java.lang.Runnable) failed to set value 9.2… 26 "SetDouble" on public static void art.Test1912.IntMethod(java.lang.Runnable) failed to set value 12… 29 "SetObject" on public static void art.Test1912.IntMethod(java.lang.Runnable) failed to set value NE… 32 "SetNullObject" on public static void art.Test1912.IntMethod(java.lang.Runnable) failed to set valu… 50 "SetInt" on public static void art.Test1912.LongMethod(java.lang.Runnable) failed to set value 2147… 53 "SetLong" on public static void art.Test1912.LongMethod(java.lang.Runnable) set value: 922337203685… 56 "SetFloat" on public static void art.Test1912.LongMethod(java.lang.Runnable) failed to set value 9.… 59 "SetDouble" on public static void art.Test1912.LongMethod(java.lang.Runnable) failed to set value 1… [all …]
|
D | info.txt | 1 Tests for jvmti get/set Local variable primitives.
|
/art/test/961-default-iface-resolution-gen/util-src/ |
D | generate_java.py | 73 self.tests = set() 202 all_ifaces = set(iface for iface in self if iface.default) 249 return set(i2 for i2 in self) 302 SUBTREES = [set(tuple(sorted(l)) for l in subtree_sizes(i)) 328 all_supers = sorted(set(dump_supers(supers)) - set(supers)) 341 all_supers = sorted(set(dump_supers(supers)) - set(supers))
|
/art/test/1967-get-set-local-bad-slot/ |
D | expected.txt | 11 "SetInt_at_too_high" on public static void art.Test1967.IntMethod(java.lang.Runnable) failed to set… 14 …on public static void art.Test1967.IntMethod(java.lang.Runnable) failed to set value 9223372036854… 17 …on public static void art.Test1967.IntMethod(java.lang.Runnable) failed to set value NEW_FOR_SET d… 29 "SetInt_at_negative" on public static void art.Test1967.IntMethod(java.lang.Runnable) failed to set… 32 …on public static void art.Test1967.IntMethod(java.lang.Runnable) failed to set value 9223372036854… 35 …on public static void art.Test1967.IntMethod(java.lang.Runnable) failed to set value NEW_FOR_SET d… 47 …n public static void art.Test1967.LongMethod(java.lang.Runnable) failed to set value 2147483647 du… 50 …n public static void art.Test1967.LongMethod(java.lang.Runnable) failed to set value 9223372036854… 53 …n public static void art.Test1967.LongMethod(java.lang.Runnable) failed to set value NEW_FOR_SET d… 65 …n public static void art.Test1967.LongMethod(java.lang.Runnable) failed to set value 2147483647 du… [all …]
|
D | info.txt | 1 Tests for jvmti get/set Local variable primitives.
|
/art/test/1981-structural-redef-private-method-handles/src/art/ |
D | Test1981_Varhandles.java | 40 public void set(Object vh, Object v) throws Throwable { in set() method in Test1981_Varhandles 41 ((VarHandle) vh).set(v); in set()
|
/art/test/1965-get-set-local-primitive-no-tables/ |
D | expected.txt | 17 …ses1965.IntMethod(java.util.function.IntConsumer,java.util.function.Consumer) set value: 2147483647 20 …thod(java.util.function.IntConsumer,java.util.function.Consumer) failed to set value 9223372036854… 23 ….TestCases1965.IntMethod(java.util.function.IntConsumer,java.util.function.Consumer) set value: 9.2 26 …thod(java.util.function.IntConsumer,java.util.function.Consumer) failed to set value 12.4 due to J… 29 …thod(java.util.function.IntConsumer,java.util.function.Consumer) failed to set value NEW_VALUE_FOR… 32 …thod(java.util.function.IntConsumer,java.util.function.Consumer) failed to set value null due to J… 50 …thod(java.util.function.IntConsumer,java.util.function.Consumer) failed to set value 2147483647 du… 53 …965.LongMethod(java.util.function.IntConsumer,java.util.function.Consumer) set value: 922337203685… 56 …thod(java.util.function.IntConsumer,java.util.function.Consumer) failed to set value 9.2 due to JV… 59 …estCases1965.LongMethod(java.util.function.IntConsumer,java.util.function.Consumer) set value: 12.4 [all …]
|
D | info.txt | 1 Tests for jvmti get/set Local variable primitives.
|
/art/runtime/gc/collector/ |
D | immune_spaces.h | 60 const std::set<space::ContinuousSpace*, CompareByBegin>& GetSpaces() { in GetSpaces() 87 std::set<space::ContinuousSpace*, CompareByBegin> spaces_;
|
/art/test/964-default-iface-init-gen/util-src/ |
D | generate_java.py | 70 self.tests = set() 227 return sorted(set(dump_tree(self.ifaces))) 356 SUBTREES = [set(tuple(l) for l in subtree_sizes(i)) 370 for i in range(len(set(dump_tree(supers)) - set(supers))): 372 selected = sorted(set(dump_tree(ns)) - set(ns))[i]
|
/art/runtime/verifier/ |
D | verifier_deps.h | 223 std::set<TypeAssignability> assignable_types_; 224 std::set<TypeAssignability> unassignable_types_; 227 std::set<ClassResolution> classes_; 228 std::set<FieldResolution> fields_; 229 std::set<MethodResolution> methods_; 363 const std::set<TypeAssignability>& assignables, 373 const std::set<ClassResolution>& classes, 383 const std::set<FieldResolution>& classes, 394 const std::set<MethodResolution>& methods,
|
/art/sigchainlib/ |
D | sigchain_test.cc | 43 static int sigemptyset64(sigset64_t* set) { in sigemptyset64() argument 44 return sigemptyset(set); in sigemptyset64() 47 static int sigismember64(sigset64_t* set, int member) { in sigismember64() argument 48 return sigismember(set, member); in sigismember64()
|
/art/test/045-reflect-array/src/ |
D | Main.java | 54 Array.set(intArray, 0, x123); in testSingleInt() 55 Array.set(intArray, 1, x456); in testSingleInt() 169 Array.set(strArray, 1, "entry one"); in testSingle() 171 Array.set(strArray, 2, "entry two"); in testSingle() 189 Array.set(strArray, 0, new Integer(5)); in testSingle()
|
/art/tools/veridex/ |
D | hidden_api_finder.h | 55 std::set<std::string> classes_; 56 std::set<std::string> strings_;
|
/art/test/100-reflect2/src/ |
D | Main.java | 85 f.set(null, Boolean.valueOf(true)); in testFieldReflection() 87 f.set(null, Byte.valueOf((byte) 6)); in testFieldReflection() 89 f.set(null, Character.valueOf('z')); in testFieldReflection() 91 f.set(null, Double.valueOf(1.3)); in testFieldReflection() 93 f.set(null, Float.valueOf(1.3f)); in testFieldReflection() 95 f.set(null, Integer.valueOf(30)); in testFieldReflection() 97 f.set(null, Long.valueOf(62)); in testFieldReflection() 98 f.set(null, Integer.valueOf(62)); in testFieldReflection() 100 f.set(null, Short.valueOf((short) 14)); in testFieldReflection() 121 f.set(null, Integer.valueOf(14)); in testFieldReflection()
|
/art/test/100-reflect2/ |
D | info.txt | 1 Another set of reflection tests.
|
/art/tools/ |
D | findbuildbotwarnings.py | 87 sharedwarnings = set(warnings.popitem()[1]) 89 sharedwarnings = sharedwarnings & set(warning_list)
|
/art/test/438-volatile/ |
D | info.txt | 1 Tests basic operations (set/get) on volatiles.
|