Home
last modified time | relevance | path

Searched refs:set (Results 51 – 75 of 223) sorted by relevance

123456789

/art/test/1915-get-set-local-current-thread/
DAndroid.bp3 name: "art-run-test-1915-get-set-local-current-thread",
/art/test/996-breakpoint-obsolete/
Dinfo.txt4 methods and that it is possible to set breakpoints on obsolete methods.
/art/test/971-iface-super/util-src/
Dgenerate_java.py89 ifaces = set(i for i in self.sources if isinstance(i, base.TestInterface))
96 …tops = set(filter(lambda a: iface_filter(a) and not any(map(lambda i: a in i.get_super_types(), if…
104 overrides = functools.reduce(operator.or_, map(lambda i: i.get_super_types(), tops), set())
/art/test/968-default-partial-compile-gen/util-src/
Dgenerate_java.py89 ifaces = set(i for i in self.sources if isinstance(i, base.TestInterface))
92 tops = set(filter(lambda a: not any(map(lambda i: a in i.get_super_types(), ifaces)), ifaces))
100 overrides = functools.reduce(operator.or_, map(lambda i: i.get_super_types(), tops), set())
/art/dexdump/
Ddexdump_cfg.cc42 std::set<uint32_t> dex_pc_is_branch_target; in DumpMethodCFG()
153 std::set<uint32_t> exception_targets; in DumpMethodCFG()
157 std::set<uint32_t> blocks_with_detailed_exceptions; in DumpMethodCFG()
255 std::set<uint32_t> current_handler_pcs; in DumpMethodCFG()
299 std::set<uint32_t> handled_targets; in DumpMethodCFG()
/art/runtime/interpreter/
Dinterpreter_intrinsics.cc27 #define BINARY_INTRINSIC(name, op, get1, get2, set) \ argument
35 result_register->set(op(shadow_frame->get1, shadow_frame->get2)); \
39 #define BINARY_II_INTRINSIC(name, op, set) \ argument
40 BINARY_INTRINSIC(name, op, GetVReg(arg[0]), GetVReg(arg[1]), set)
42 #define BINARY_JJ_INTRINSIC(name, op, set) \ argument
43 BINARY_INTRINSIC(name, op, GetVRegLong(arg[0]), GetVRegLong(arg[2]), set)
45 #define BINARY_JI_INTRINSIC(name, op, set) \ argument
46 BINARY_INTRINSIC(name, op, GetVRegLong(arg[0]), GetVReg(arg[2]), set)
48 #define UNARY_INTRINSIC(name, op, get, set) \ argument
56 result_register->set(op(shadow_frame->get(arg[0]))); \
/art/test/468-checker-bool-simplif-regression/src/
DMain.java25 f.set(null, (Boolean) input); in runTest()
/art/test/717-integer-value-of/src/
DMain.java53 cacheField.set(integerCacheClass, alt_cache); in testValueOfArg()
54 cacheField.set(integerCacheClass, cache); in testValueOfArg()
/art/test/527-checker-array-access-split/src/
DMain.java165 public static void set(int array[], int index, int value) { in set() method in Main
656 set(array, 1, 456); in main()
/art/test/691-hiddenapi-proxy/
Dinfo.txt3 set for proxies. b/124218696
/art/test/531-regression-debugphi/smali/
DTestCase.smali25 # - set type of PhiB
71 # - add both PhiAs to worklist, set PrimVoid PhiA to PrimInt
76 # - PrimInt PhiA: update inputs, set to PrimNot, use instead of PrimNot PhiA
78 # - PrimInt PhiB: set type to PrimNot, equivalent live and in worklist
/art/profman/
Dboot_image_profile.h69 std::set<std::string> preloaded_classes_blacklist;
/art/runtime/arch/arm/
Dasm_support_arm.S57 .set .Lruntime_current\num\()_used, 1
88 .set .Lruntime_current1_used, 0
89 .set .Lruntime_current2_used, 0
90 .set .Lruntime_current3_used, 0
/art/test/1954-pop-frame-jit/
Dinfo.txt7 multiple breakpoints be set at once.
/art/test/1955-pop-frame-jit-called/
Dinfo.txt7 multiple breakpoints be set at once.
/art/test/1956-pop-frame-jit-calling/
Dinfo.txt7 multiple breakpoints be set at once.
/art/test/1953-pop-frame/
Dinfo.txt7 multiple breakpoints be set at once.
/art/test/993-breakpoints/
Dinfo.txt7 multiple breakpoints be set at once.
/art/test/979-const-method-handle/
Dexpected.txt9 Attempting to set Math.E raised IAE
/art/tools/jvmti-agents/breakpoint-logger/
DREADME.md3 breakpointlogger is a JVMTI agent that lets one set breakpoints that are logged
27 set the breakpoint. This means that classes might be initialized earlier than
28 one might expect. This also means that one cannot set breakpoints on classes
/art/test/1981-structural-redef-private-method-handles/
Dexpected.txt19 Post set with new mh: class art.Test1981$Transform[FOO: value of <FOO FIELD>, BAR: value of <BAR FI…
21 Post set with old mh: class art.Test1981$Transform[FOO: class art.Test1981$Transform, BAR: value of…
23 Post set with new varhandle: class art.Test1981$Transform[FOO: new_value object, BAR: value of <BAR…
25 Post set with old varhandle: class art.Test1981$Transform[FOO: new_value object, BAR: value of <BAR…
/art/tools/dexfuzz/src/dexfuzz/program/
DMutatableCode.java219 mTryBlock.handlers.set(idxToChange, after); in updateTryBlocksWithReplacementInsn()
224 mTryBlock.handlers.set(idxToChange, before); in updateTryBlocksWithReplacementInsn()
302 mutatableInsns.set(aIdx, bInsn); in swapInstructionsByIndex()
303 mutatableInsns.set(bIdx, aInsn); in swapInstructionsByIndex()
/art/runtime/gc/
Dreference_queue_test.cc54 std::set<mirror::Reference*> refs = {ref1.Get(), ref2.Get()}; in TEST_F()
55 std::set<mirror::Reference*> dequeued; in TEST_F()
/art/tools/dexanalyze/
Ddexanalyze_experiments.cc88 std::set<const uint8_t*> seen; in ProcessDexFiles()
91 std::set<std::vector<uint8_t>> unique_non_header; in ProcessDexFiles()
213 std::set<std::string> unique_field_names; in ProcessDexFiles()
214 std::set<std::string> unique_method_names; in ProcessDexFiles()
215 std::set<std::string> unique_type_names; in ProcessDexFiles()
216 std::set<std::string> unique_mf_names; in ProcessDexFiles()
244 std::set<size_t> unique_code_items; in ProcessDexFile()
247 std::set<size_t> unique_method_ids; in ProcessDexFile()
248 std::set<size_t> unique_string_ids; in ProcessDexFile()
/art/tools/hiddenapi/
DREADME.md36 At most one of these flags can be set at any given time. Inverting these bits
37 therefore produces a value where at least two bits are set and there is never
45 * bit 5 for non-native methods, as `synchronized` can only be set on native

123456789