Searched defs:python_path (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/net/test/
H A Dpython_utils_unittest.cc25 std::string python_path; local
34 env->GetVar(kPythonPathEnv, &python_path);
35 ASSERT_EQ(python_path, "test/path_append1");
39 env->GetVar(kPythonPathEnv, &python_path);
41 ASSERT_EQ(std::string("test/path_append1;test/path_append2"), python_path);
43 ASSERT_EQ(std::string("test/path_append1:test/path_append2"), python_path);
/external/chromium_org/tools/gn/
H A Dbuild_settings.h48 base::FilePath python_path() const { return python_path_; } function in class:BuildSettings
H A Dfunction_exec_script.cc338 const base::FilePath& python_path = build_settings->python_path(); local
339 CommandLine cmdline(python_path);
387 "I was trying to execute \"" + FilePathToUTF8(python_path) + "\".");
H A Dsetup.cc483 std::string python_path; local
484 if (base::GetAppOutput(kGetPython, &python_path)) {
485 base::TrimWhitespaceASCII(python_path, base::TRIM_ALL, &python_path);
487 scheduler_.Log("Found python", python_path);
491 python_path = "python.exe";
493 build_settings_.set_python_path(base::FilePath(base::UTF8ToUTF16(python_path))
/external/lldb/tools/driver/
H A DDriver.cpp727 char python_path[PATH_MAX]; local
728 size_t num_chars = python_file_spec.GetPath(python_path, PATH_MAX);
731 ::fprintf (out_fh, "%s\n", python_path);

Completed in 514 milliseconds