Home
last modified time | relevance | path

Searched refs:python_path (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/net/test/
Dpython_utils_unittest.cc25 std::string python_path; in TEST() local
34 env->GetVar(kPythonPathEnv, &python_path); in TEST()
35 ASSERT_EQ(python_path, "test/path_append1"); in TEST()
39 env->GetVar(kPythonPathEnv, &python_path); in TEST()
41 ASSERT_EQ(std::string("test/path_append1;test/path_append2"), python_path); in TEST()
43 ASSERT_EQ(std::string("test/path_append1:test/path_append2"), python_path); in TEST()
/external/chromium_org/build/toolchain/win/
DBUILD.gn66 …command = "$python_path gyp-win-tool rc-wrapper $env rc.exe {{defines}} {{include_dirs}} /fo{{outp…
74 …command = "$python_path gyp-win-tool asm-wrapper $env ml.exe {{defines}} {{include_dirs}} /c /Fo {…
83 …command = "$python_path gyp-win-tool link-wrapper $env False lib.exe /nologo /ignore:4221 /OUT:{{o…
101 …link_command = "$python_path gyp-win-tool link-wrapper $env False link.exe /nologo /IMPLIB:$libnam…
104 …#manifest_command = "$python_path gyp-win-tool manifest-wrapper $env mt.exe -nologo -manifest $man…
124 …link_command = "$python_path gyp-win-tool link-wrapper $env False link.exe /nologo /OUT:{{output}}…
127 …#manifest_command = "$python_path gyp-win-tool manifest-wrapper $env mt.exe -nologo -manifest $man…
142 command = "$python_path gyp-win-tool stamp {{output}}"
147 command = "$python_path gyp-win-tool recursive-mirror {{source}} {{output}}"
/external/chromium_org/build/android/pylib/host_driven/
Dtest_server.py91 python_path = current_python_path + ':' + extra_python_path
93 python_path = extra_python_path
102 cmd, env={'PYTHONPATH': python_path})
/external/chromium_org/tools/gn/
Dsetup.cc483 std::string python_path; in FillPythonPath() local
484 if (base::GetAppOutput(kGetPython, &python_path)) { in FillPythonPath()
485 base::TrimWhitespaceASCII(python_path, base::TRIM_ALL, &python_path); in FillPythonPath()
487 scheduler_.Log("Found python", python_path); in FillPythonPath()
491 python_path = "python.exe"; in FillPythonPath()
493 build_settings_.set_python_path(base::FilePath(base::UTF8ToUTF16(python_path)) in FillPythonPath()
Dfunction_exec_script.cc338 const base::FilePath& python_path = build_settings->python_path(); in RunExecScript() local
339 CommandLine cmdline(python_path); in RunExecScript()
387 "I was trying to execute \"" + FilePathToUTF8(python_path) + "\"."); in RunExecScript()
Dninja_action_target_writer.cc113 path_output_.WriteFile(out_, settings_->build_settings()->python_path()); in WriteRuleDefinition()
125 path_output_.WriteFile(out_, settings_->build_settings()->python_path()); in WriteRuleDefinition()
138 path_output_.WriteFile(out_, settings_->build_settings()->python_path()); in WriteRuleDefinition()
Dbuild_settings.h48 base::FilePath python_path() const { return python_path_; } in python_path() function
Dscope_per_file_provider.cc67 FilePathToUTF8(scope_->settings()->build_settings()->python_path()))); in GetPythonPath()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
Dmain.py151 python_path = env.get('PYTHONPATH', '')
152 python_path = python_path + os.pathsep + thirdparty_dir
153 env['PYTHONPATH'] = python_path
/external/lldb/source/Interpreter/
DScriptInterpreterPython.cpp3112 std::string python_path("sys.path.insert(0,\""); in InitializePrivate() local
3113 size_t orig_len = python_path.length(); in InitializePrivate()
3116 python_path.append (python_dir_path); in InitializePrivate()
3117 python_path.append ("\")"); in InitializePrivate()
3118 PyRun_SimpleString (python_path.c_str()); in InitializePrivate()
3119 python_path.resize (orig_len); in InitializePrivate()
3126 python_path.append (python_dir_path); in InitializePrivate()
3127 python_path.append ("\")"); in InitializePrivate()
3128 PyRun_SimpleString (python_path.c_str()); in InitializePrivate()
3129 python_path.resize (orig_len); in InitializePrivate()
/external/chromium_org/build/toolchain/nacl/
DBUILD.gn42 command = "$python_path gyp-win-tool stamp \$out"
/external/lldb/tools/driver/
DDriver.cpp727 char python_path[PATH_MAX]; in ParseArgs() local
728 size_t num_chars = python_file_spec.GetPath(python_path, PATH_MAX); in ParseArgs()
731 ::fprintf (out_fh, "%s\n", python_path); in ParseArgs()
/external/chromium_org/tools/gyp/pylib/gyp/generator/
Dmsvs.py2778 python_path = cyg_path.replace('cygwin\\bin', 'python_26')
2779 new_paths.append(python_path)