Home
last modified time | relevance | path

Searched refs:script_file (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_dtrace.py48 script_file=abspath(name + self.EXTENSION),
57 def generate_trace_command(self, script_file, subcommand=None): argument
58 command = self.COMMAND + [script_file]
63 def trace(self, script_file, subcommand=None): argument
64 command = self.generate_trace_command(script_file, subcommand)
71 def trace_python(self, script_file, python_file, optimize_python=None): argument
76 return self.trace(script_file, subcommand)
/external/v8/tools/
Dandroid-run.py100 script_file = WriteToTemporaryFile(script)
101 android_script_file = android_workspace + "/" + script_file
102 command = ("adb push '%s' %s;" % (script_file, android_script_file) +
106 os.unlink(script_file)
/external/eigen/bench/btl/data/
DCMakeLists.txt7 FOREACH(script_file ${script_files})
11 …COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_SOURCE_DIR}/${script_file} ${CMAKE_CURRENT_BINARY…
14 ENDFOREACH(script_file)
/external/u-boot/tools/env/
Dfw_env_main.c60 static char *script_file; variable
189 script_file = optarg; in parse_setenv_args()
268 if (!script_file) { in main()
272 if (fw_parse_script(script_file, &env_opts) != 0) in main()
/external/python/cpython2/Lib/test/support/
Dscript_helper.py109 script_file = open(script_name, 'w')
110 script_file.write(source)
111 script_file.close()
/external/python/cpython3/Lib/test/support/
Dscript_helper.py208 script_file = open(script_name, 'w', encoding='utf-8')
209 script_file.write(source)
210 script_file.close()