Home
last modified time | relevance | path

Searched refs:set (Results 1 – 25 of 191) sorted by relevance

12345678

/art/test/545-tracing-and-jit/src/
DMain.java171 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/
DVarHandleTypeConversionTests.java162 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/runtime/arch/mips64/
Dasm_support_mips64.S96 .set push
97 .set noat
106 .set pop
111 .set push
112 .set noat
115 .set pop
120 .set push
121 .set noat
124 .set pop
/art/runtime/arch/mips/
Dasm_support_mips.S140 .set push
141 .set noat
155 .set pop
160 .set push
161 .set noat
164 .set pop
169 .set push
170 .set noat
173 .set pop
191 .set push
[all …]
/art/runtime/interpreter/mterp/mips/
Dmain.S202 .set push; \
203 .set noat; \
206 .set pop; \
328 .set noat; \
331 .set at
341 .set noat; \
346 .set at; \
358 .set noat; \
363 .set at; \
377 .set noat; \
[all …]
/art/test/901-hello-ti-agent/src/art/
DTest901.java30 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/runtime/interpreter/mterp/mips64/
Dmain.S206 .set noat
210 .set at
221 .set noat
224 .set at
227 .set noat
230 .set at
233 .set noat
236 .set at
239 .set noat
244 .set at
[all …]
/art/test/1913-get-set-local-objects/
Dexpected.txt5 "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/
Dgvn.cc410 ValueSet* set = nullptr; in VisitBasicBlock() local
417 set = new (&allocator_) ValueSet(&allocator_); in VisitBasicBlock()
427 set = dominator_set; in VisitBasicBlock()
436 set = new (&allocator_) ValueSet(&allocator_, *dominator_set); in VisitBasicBlock()
439 set = FindSetFor(recyclable); in VisitBasicBlock()
441 set->PopulateFrom(*dominator_set); in VisitBasicBlock()
445 if (!set->IsEmpty()) { in VisitBasicBlock()
454 set->Clear(); in VisitBasicBlock()
458 set->Kill(side_effects_.GetLoopEffects(block)); in VisitBasicBlock()
462 set->IntersectWith(FindSetFor(predecessor)); in VisitBasicBlock()
[all …]
/art/runtime/
Dintern_table-inl.h44 UnorderedSet set(ptr, /*make copy*/false, &read_count); in AddTableFromMemory()
50 visitor(set); in AddTableFromMemory()
51 if (!set.empty()) { in AddTableFromMemory()
52 strong_interns_.AddInternStrings(std::move(set), is_boot_image); in AddTableFromMemory()
/art/test/1912-get-set-local-primitive/
Dexpected.txt14 "SetInt" on public static void art.Test1912.IntMethod(java.lang.Runnable) set value: 2147483647
17 "SetLong" on public static void art.Test1912.IntMethod(java.lang.Runnable) failed to set value 9223…
20 "SetFloat" on public static void art.Test1912.IntMethod(java.lang.Runnable) failed to set value 9.2…
23 "SetDouble" on public static void art.Test1912.IntMethod(java.lang.Runnable) failed to set value 12…
38 "SetInt" on public static void art.Test1912.LongMethod(java.lang.Runnable) failed to set value 2147…
41 "SetLong" on public static void art.Test1912.LongMethod(java.lang.Runnable) set value: 922337203685…
44 "SetFloat" on public static void art.Test1912.LongMethod(java.lang.Runnable) failed to set value 9.…
47 "SetDouble" on public static void art.Test1912.LongMethod(java.lang.Runnable) failed to set value 1…
62 "SetInt" on public static void art.Test1912.FloatMethod(java.lang.Runnable) failed to set value 214…
65 "SetLong" on public static void art.Test1912.FloatMethod(java.lang.Runnable) failed to set value 92…
[all …]
Dinfo.txt1 Tests for jvmti get/set Local variable primitives.
/art/runtime/arch/arm/
Dasm_support_arm.S46 .set .Lruntime_current\num\()_used, 1
73 .set .Lruntime_current1_used, 0
74 .set .Lruntime_current2_used, 0
75 .set .Lruntime_current3_used, 0
/art/test/961-default-iface-resolution-gen/util-src/
Dgenerate_java.py73 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/100-reflect2/src/
DMain.java85 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/964-default-iface-init-gen/util-src/
Dgenerate_java.py70 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/
Dverifier_deps.h221 std::set<TypeAssignability> assignable_types_;
222 std::set<TypeAssignability> unassignable_types_;
225 std::set<ClassResolution> classes_;
226 std::set<FieldResolution> fields_;
227 std::set<MethodResolution> methods_;
360 const std::set<TypeAssignability>& assignables,
370 const std::set<ClassResolution>& classes,
380 const std::set<FieldResolution>& classes,
391 const std::set<MethodResolution>& methods,
/art/runtime/gc/collector/
Dimmune_spaces.h60 const std::set<space::ContinuousSpace*, CompareByBegin>& GetSpaces() { in GetSpaces()
87 std::set<space::ContinuousSpace*, CompareByBegin> spaces_;
/art/test/045-reflect-array/src/
DMain.java54 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/sigchainlib/
Dsigchain_test.cc43 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/tools/veridex/
Dhidden_api_finder.h53 std::set<std::string> classes_;
54 std::set<std::string> strings_;
/art/tools/
Dfindbuildbotwarnings.py87 sharedwarnings = set(warnings.popitem()[1])
89 sharedwarnings = sharedwarnings & set(warning_list)
Danalyze-init-failures.py45 root_failures = set()
120 fail_sources = set(class_fail_class.values());
121 all_classes = fail_sources | set(class_fail_class.keys())
/art/test/100-reflect2/
Dinfo.txt1 Another set of reflection tests.
/art/test/438-volatile/
Dinfo.txt1 Tests basic operations (set/get) on volatiles.

12345678