Searched refs:python_cmd (Results 1 – 6 of 6) sorted by relevance
43 bool GetPython3Command(base::CommandLine* python_cmd) { in GetPython3Command() argument44 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()
43 std::string python_cmd = base::StringPrintf("print('%s');", input.c_str()); in TEST() local44 cmd_line.AppendArg(python_cmd); in TEST()
22 [[nodiscard]] bool GetPython3Command(base::CommandLine* python_cmd);
50 def python_cmd(): function58 cmd = python_cmd()79 cmd = python_cmd()
124 python_cmd = [137 subprocess.check_call(python_cmd, env=env, stdout=out_stream)
450 def python_cmd(self) -> pathlib.Path: member in BuildProfile