/third_party/boost/libs/process/test/ |
D | search_path.cpp | 19 BOOST_AUTO_TEST_CASE(search_path) in BOOST_AUTO_TEST_CASE() argument 27 BOOST_CHECK(!bp::search_path(filename).empty()); in BOOST_AUTO_TEST_CASE() 28 auto fs = bp::search_path(filename); in BOOST_AUTO_TEST_CASE() 38 BOOST_CHECK(!bp::search_path(filename, path).empty()); in BOOST_AUTO_TEST_CASE()
|
D | Jamfile.jam | 107 …[ run search_path.cpp filesystem system : [ test-options search_path ] : : <targ…
|
/third_party/boost/tools/build/src/engine/ |
D | startup.cpp | 74 b2::jam::list search_path{b2::jam::object{boost_build_dir}}; in builtin_boost_build() local 76 search_path.append(BOOST_BUILD_PATH); in builtin_boost_build() 80 BOOST_BUILD_PATH = search_path; in builtin_boost_build() 86 dot_ENVIRON__BOOST_BUILD_PATH = search_path; in builtin_boost_build() 90 for (auto path: search_path) in builtin_boost_build() 114 for (auto path: search_path) in builtin_boost_build() 207 for (auto search_path: BOOST_BUILD_PATH) in bootstrap() local 209 std::string path = b2::jam::object{search_path}; in bootstrap()
|
/third_party/python/PC/layout/support/ |
D | pip.py | 55 search_path = os.pathsep.join(wheels) 57 search_path += ";" + os.environ["PYTHONPATH"] 60 env["PYTHONPATH"] = search_path
|
/third_party/boost/boost/process/ |
D | search_path.hpp | 47 inline boost::filesystem::path search_path(const boost::filesystem::path &filename, in search_path() function 50 return ::boost::process::detail::api::search_path(filename, path); in search_path()
|
/third_party/glib/glib/tests/ |
D | spawn-path-search-helper.c | 55 gboolean search_path = FALSE; in main() local 68 G_OPTION_FLAG_NONE, G_OPTION_ARG_NONE, &search_path, in main() 123 if (search_path) in main()
|
/third_party/flutter/skia/third_party/externals/sdl/premake/util/ |
D | sdl_depends.lua | 57 local search_path = table.concat(search_table, ";") 58 local result_path = os.dirpathsearch(sub_dir_path, search_path, ";")
|
/third_party/glib/glib/ |
D | gspawn.c | 166 const gchar *search_path, 175 gboolean search_path, 1569 const gchar *search_path, in do_exec() argument 1727 (gchar **) envp, search_path, search_path_buffer, search_path_buffer_len); in do_exec() 1787 gboolean search_path, in do_posix_spawn() argument 1941 if (!search_path || strchr (argv[0], '/') != NULL) in do_posix_spawn() 1968 gboolean search_path, in fork_exec() argument 2051 search_path, in fork_exec() 2100 if (search_path && chosen_search_path == NULL) in fork_exec() 2103 if ((search_path || search_path_from_envp) && chosen_search_path == NULL) in fork_exec() [all …]
|
/third_party/boost/libs/process/doc/ |
D | tutorial.qbk | 12 [def bp::search_path [funcref boost::process::search_path bp::search_path]] 93 `Boost.process` provides a function to this end: bp::search_path. 96 boost::filesystem::path p = bp::search_path("g++"); //or get it from somewhere else. 100 [note [funcref boost::process::search_path search_path] will search for any executable with that na… 123 bp::spawn(bp::search_path("chrome"), boost_org); 130 bp::child c(bp::search_path("g++"), "main.cpp"); 203 bp::child c(bp::search_path("nm"), file, bp::std_out > is); 250 bp::child nm(bp::search_path("nm"), file, bp::std_out > p); 251 bp::child filt(bp::search_path("c++filt"), bp::std_in < p, bp::std_out > is); 284 bp::child c(bp::search_path("g++"), "main.cpp", bp::std_out > ap); [all …]
|
/third_party/gstreamer/gstplugins_bad/ext/ladspa/ |
D | gstladspa.c | 345 const gchar *search_path, *path; in ladspa_plugin_path_search() local 356 search_path = g_getenv ("LADSPA_PATH"); in ladspa_plugin_path_search() 357 if (search_path) { in ladspa_plugin_path_search() 359 "%s" G_SEARCHPATH_SEPARATOR_S GST_LADSPA_DEFAULT_PATH, search_path); in ladspa_plugin_path_search()
|
/third_party/python/Lib/distutils/ |
D | spawn.py | 23 def spawn(cmd, search_path=1, verbose=0, dry_run=0): argument 47 if search_path:
|
D | cmd.py | 362 def spawn(self, cmd, search_path=1, level=1): argument 365 spawn(cmd, search_path, dry_run=self.dry_run)
|
/third_party/python/Lib/zoneinfo/ |
D | _tzpath.py | 68 for search_path in TZPATH: 69 filepath = os.path.join(search_path, key)
|
/third_party/json/third_party/amalgamate/ |
D | amalgamate.py | 59 search_path = os.path.join(search_dir, file_path) 60 if os.path.isfile(self.actual_path(search_path)): 61 return search_path
|
/third_party/python/Lib/ |
D | pyclbr.py | 163 search_path = path 165 search_path = path + sys.path 166 spec = importlib.util._find_spec_from_path(fullmodule, search_path)
|
D | pkgutil.py | 550 search_path = sys.modules[parent_package].__path__ 556 search_path = sys.path 558 for dir in search_path:
|
/third_party/boost/boost/process/detail/posix/ |
D | search_path.hpp | 23 inline boost::filesystem::path search_path( in search_path() function
|
/third_party/boost/libs/geometry/index/example/ |
D | glut_vis.cpp | 201 LS search_path; variable 278 search_path.resize(10); in query_path() 282 search_path[2 * i] = P(x-w, yy); in query_path() 283 search_path[2 * i + 1] = P(x+w, yy); in query_path() 286 found_count = query(cont, bgi::detail::path<LS>(search_path, count)); in query_path() 291 BOOST_FOREACH(P const& p, search_path) in query_path() 757 draw_linestring(search_path); in render_scene()
|
/third_party/boost/boost/process/detail/windows/ |
D | search_path.hpp | 27 inline boost::filesystem::path search_path( in search_path() function
|
/third_party/mksh/ |
D | exec.c | 882 sh = search_path(sh, path, X_OK, NULL); in scriptexec() 963 if (mksh_vdirsep(sh) && !search_path(sh, path, X_OK, NULL)) { in scriptexec() 964 cp = search_path(_getname(sh), path, X_OK, NULL); in scriptexec() 1199 tp->u.fpath = search_path(name, fpath, R_OK, in findcom() 1231 npath.ro = search_path(name, in findcom() 1241 (npath.ro = search_path(name, fpath, R_OK, in findcom() 1318 search_path(const char *name, const char *lpath, in search_path() function
|
D | os2.c | 416 exec_name = search_path(name, path, X_OK, NULL); in execve()
|
D | funcs.c | 925 search_path(alias, path, X_OK, NULL) : in c_alias() 1550 file = search_path(cp, path, R_OK, &errcode); in c_dot()
|
/third_party/grpc/src/compiler/ |
D | cpp_generator.cc | 67 bool use_system_headers, const std::string& search_path) { in PrintIncludes() argument 73 if (!search_path.empty()) { in PrintIncludes() 74 vars["l"] += search_path; in PrintIncludes() 75 if (search_path[search_path.size() - 1] != '/') { in PrintIncludes()
|
/third_party/libuv/src/win/ |
D | process.c | 342 static WCHAR* search_path(const WCHAR *file, in search_path() function 1047 application_path = search_path(application, in uv_spawn()
|
/third_party/iptables/libxtables/ |
D | xtables.c | 597 static void *load_extension(const char *search_path, const char *af_prefix, in load_extension() argument 602 const char *dir = search_path, *next; in load_extension()
|