Home
last modified time | relevance | path

Searched refs:execute (Results 1 – 24 of 24) sorted by relevance

/art/test/802-deoptimization/smali/
Dcatch_handler_on_entry.smali5 # Test we can execute a method starting with a catch handler (without
9 # We execute the catch handler (Label1) for the first time with p0 == 0.
10 # We save its value in v0, increment p0 to 1 and execute the div-int
12 # That exception is caught by the catch handler so we execute it a second time.
13 # Now p0 == 1. When we we execute the div-int instruction, it succeeds and we
/art/tools/dexfuzz/src/dexfuzz/
DDexFuzz.java64 if (Options.repeat > 1 && Options.execute) { in main()
90 if ((Options.repeat > 1) && Options.execute) { in main()
92 } else if ((Options.repeat > 1) && !Options.execute) { in main()
94 } else if ((Options.repeat == 1) && Options.execute) { in main()
96 } else if ((Options.repeat == 1) && !Options.execute) { in main()
DOptions.java62 public static boolean execute; field in Options
156 execute = true; in handleFlagOption()
400 if (execute) { in validateOptions()
/art/test/602-deoptimizeable/src/
DMain.java47 public static void execute(Runnable runnable) throws Exception { in execute() method in Main
58 execute(new Runnable() { in main()
70 execute(new Runnable() { in main()
90 execute(new Runnable() { in main()
103 execute(new Runnable() { in main()
/art/test/685-deoptimizeable/src/
DMain.java55 public static void execute(Runnable runnable) throws Exception { in execute() method in Main
82 execute(new Runnable() { in main()
101 execute(new Runnable() { in main()
128 execute(new Runnable() { in main()
149 execute(new Runnable() { in main()
/art/tools/golem/
Dbuild-target.sh267 execute 'source' build/envsetup.sh
269 execute lunch "$lunch_target"
355 execute build/soong/soong_ui.bash --make-mode "${j_arg}" "${make_target}"
375 execute tar -czf "${tarball}" --exclude ".git" --exclude ".gitignore" "${dirs_rooted[@]}"
/art/test/807-method-handle-and-mr/src/
DMain.java40 void execute() { in execute() method in Test
87 test.execute(); in main()
/art/tools/dexfuzz/src/dexfuzz/fuzzers/
DFuzzerSingleExecute.java35 execute(program); in run()
DFuzzerMultipleExecute.java45 execute(program); in run()
DFuzzer.java211 protected void execute(Program program) { in execute() method in Fuzzer
233 executor.execute(programName); in execute()
295 goldenExecutor.execute(programName); in checkGoldenExecutorForSelfDivergence()
/art/test/082-inline-execute/
DAndroid.bp3 name: "art-run-test-082-inline-execute",
/art/test/080-oom-throw/
Dinfo.txt3 the interpreter and re-execute the bytecode.
/art/tools/veridex/
DREADME.md7 API uses that do not execute at runtime, and reflection uses
/art/test/971-iface-super/util-src/
Dgenerate_java.py75 def execute(self): member in Compiler
135 Compiler(all_files, javac_exec, temp_dir, classes_dir).execute()
/art/test/968-default-partial-compile-gen/util-src/
Dgenerate_java.py75 def execute(self): member in Compiler
131 Compiler(all_files, javac_exec, temp_dir, classes_dir).execute()
/art/tools/dexfuzz/
DREADME18 ADB-connected Android device, and it will fuzz these seed files, and execute the
43 dexfuzz --inputs=<seeds dir> --execute --repeat=<attempts> \
66 Add in --execute-dir=<dir on device> if you want to specify an execution directory.
/art/test/115-native-bridge/src/
DNativeBridgeMain.java65 private static void execute() { in execute() method in Main.testCallStaticVoidMethodOnSubClass_SuperClass
/art/tools/dexfuzz/src/dexfuzz/executors/
DExecutor.java177 public void execute(String programName) { in execute() method in Executor
/art/runtime/interpreter/mterp/arm/
Dother.S53 GOTO_OPCODE ip @ execute next instruction
204 GOTO_OPCODE ip @ execute next instruction
331 GOTO_OPCODE ip @ execute it
/art/test/004-JniTest/
Djni_test.cc172 jmethodID execute = env->GetStaticMethodID(super_class, "execute", "()V"); in Java_Main_testCallStaticVoidMethodOnSubClassNative() local
173 CHECK(execute != nullptr); in Java_Main_testCallStaticVoidMethodOnSubClassNative()
178 env->CallStaticVoidMethod(sub_class, execute); in Java_Main_testCallStaticVoidMethodOnSubClassNative()
/art/test/004-JniTest/src/
DMain.java115 private static void execute() { in execute() method in Main.testCallStaticVoidMethodOnSubClass_SuperClass
/art/test/
DREADME.chroot.md14 shell chroot $ART_TEST_CHROOT <command>` to execute commands on the device
/art/build/apex/
DAndroid.bp92 // Libraries needed to execute ART run-tests.
/art/
DTEST_MAPPING195 "name": "art-run-test-082-inline-execute"