/art/test/802-deoptimization/smali/ |
D | catch_handler_on_entry.smali | 5 # 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/ |
D | DexFuzz.java | 64 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()
|
D | Options.java | 62 public static boolean execute; field in Options 160 execute = true; in handleFlagOption() 408 if (execute) { in validateOptions()
|
/art/test/602-deoptimizeable/src/ |
D | Main.java | 47 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/ |
D | Main.java | 55 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/ |
D | build-target.sh | 267 execute 'source' build/envsetup.sh 269 execute lunch "$lunch_target" 350 execute build/soong/soong_ui.bash --make-mode "${j_arg}" "${make_target}" 370 execute tar -czf "${tarball}" --exclude ".git" --exclude ".gitignore" "${dirs_rooted[@]}"
|
/art/test/807-method-handle-and-mr/src/ |
D | Main.java | 40 void execute() { in execute() method in Test 87 test.execute(); in main()
|
/art/tools/dexfuzz/src/dexfuzz/fuzzers/ |
D | FuzzerSingleExecute.java | 35 execute(program); in run()
|
D | FuzzerMultipleExecute.java | 45 execute(program); in run()
|
D | Fuzzer.java | 225 protected void execute(Program program) { in execute() method in Fuzzer 247 executor.execute(programName); in execute() 309 goldenExecutor.execute(programName); in checkGoldenExecutorForSelfDivergence()
|
/art/test/080-oom-throw/ |
D | info.txt | 3 the interpreter and re-execute the bytecode.
|
/art/tools/veridex/ |
D | README.md | 7 API uses that do not execute at runtime, and reflection uses
|
/art/test/971-iface-super/util-src/ |
D | generate_java.py | 75 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/ |
D | generate_java.py | 75 def execute(self): member in Compiler 131 Compiler(all_files, javac_exec, temp_dir, classes_dir).execute()
|
/art/tools/dexfuzz/ |
D | README | 18 ADB-connected Android device, and it will fuzz these seed files, and execute the 43 dexfuzz --inputs=<seeds dir> --execute --repeat=<attempts> \ 68 Add in --execute-dir=<dir on device> if you want to specify an execution directory.
|
/art/test/115-native-bridge/src/ |
D | NativeBridgeMain.java | 65 private static void execute() { in execute() method in Main.testCallStaticVoidMethodOnSubClass_SuperClass
|
/art/tools/dexfuzz/src/dexfuzz/executors/ |
D | Executor.java | 177 public void execute(String programName) { in execute() method in Executor
|
/art/runtime/interpreter/mterp/arm/ |
D | other.S | 53 GOTO_OPCODE ip @ execute next instruction 204 GOTO_OPCODE ip @ execute next instruction 331 GOTO_OPCODE ip @ execute it
|
/art/test/004-JniTest/ |
D | jni_test.cc | 172 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/ |
D | Main.java | 115 private static void execute() { in execute() method in Main.testCallStaticVoidMethodOnSubClass_SuperClass
|