Home
last modified time | relevance | path

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

/aosp_15_r20/external/cronet/net/test/
H A Dpython_utils.cc43 bool GetPython3Command(base::CommandLine* python_cmd) { in GetPython3Command() argument
44 DCHECK(python_cmd); in GetPython3Command()
48 python_cmd->SetProgram(base::FilePath(FILE_PATH_LITERAL("vpython3.bat"))); in GetPython3Command()
50 python_cmd->SetProgram(base::FilePath(FILE_PATH_LITERAL("vpython3"))); in GetPython3Command()
56 python_cmd->AppendArg("-vpython-log-level=info"); in GetPython3Command()
61 python_cmd->AppendArg("-u"); in GetPython3Command()
H A Dpython_utils_unittest.cc43 std::string python_cmd = base::StringPrintf("print('%s');", input.c_str()); in TEST() local
44 cmd_line.AppendArg(python_cmd); in TEST()
H A Dpython_utils.h22 [[nodiscard]] bool GetPython3Command(base::CommandLine* python_cmd);
/aosp_15_r20/external/python/cpython3/Lib/test/
Dbisect_cmd.py50 def python_cmd(): function
58 cmd = python_cmd()
79 cmd = python_cmd()
/aosp_15_r20/external/perfetto/python/generators/diff_tests/
H A Dutils.py124 python_cmd = [
137 subprocess.check_call(python_cmd, env=env, stdout=out_stream)
/aosp_15_r20/external/python/cpython3/Tools/wasm/
Dwasm_build.py450 def python_cmd(self) -> pathlib.Path: member in BuildProfile