Home
last modified time | relevance | path

Searched refs:pathsep (Results 51 - 75 of 77) sorted by relevance

1234

/third_party/python/
H A Dsetup.py278 tzpaths = base_tzpath.split(os.pathsep)
745 pathsep = (";" if sys.platform == "msys" else ":")
746 for d in line.strip().split("=")[1].split(pathsep):
/third_party/python/Lib/
H A Dshutil.py1485 path = path.split(os.fsencode(os.pathsep))
1488 path = path.split(os.pathsep)
1500 pathext = [ext for ext in pathext_source.split(os.pathsep) if ext]
H A Dos.py12 - os.pathsep is the component separator used in $PATH etc
36 __all__ = ["altsep", "curdir", "pardir", "sep", "pathsep", "linesep",
96 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep, namespace
660 return path_list.split(pathsep)
H A Dwebbrowser.py586 userchoices = os.environ["BROWSER"].split(os.pathsep)
H A Dposixpath.py20 pathsep = ':' variable
36 "curdir","pardir","sep","pathsep","defpath","altsep","extsep",
H A Dntpath.py15 pathsep = ';' variable
31 "curdir","pardir","sep","pathsep","defpath","altsep",
H A Dmodulefinder.py623 addpath = addpath + a.split(os.pathsep)
H A Dtrace.py654 '(multiple directories can be joined by os.pathsep).')
677 for i in opts.ignore_dir for s in i.split(os.pathsep)]
H A Dzipfile.py1697 def _sanitize_windows_name(cls, arcname, pathsep):
1706 arcname = (x.rstrip('.') for x in arcname.split(pathsep))
1708 arcname = pathsep.join(x for x in arcname if x)
/third_party/openssl/engines/
H A De_loader_attic.c1432 const char *pathsep = ossl_ends_with_dirsep(ctx->uri) ? "" : "/"; in file_name_to_uri() local
1433 long calculated_length = strlen(ctx->uri) + strlen(pathsep) in file_name_to_uri()
1443 OPENSSL_strlcat(*data, pathsep, calculated_length); in file_name_to_uri()
/third_party/python/Lib/test/
H A Dtest_venv.py536 bad_itempath = self.env_dir + os.pathsep
592 pythonpath = os.pathsep.join(
H A Dtest_pkgutil.py237 ('os.path:pathsep', os.path.pathsep),
268 ('os.pth:pathsep', ImportError),
H A Dtest_site.py645 env['PATH'] = '{}{}{}'.format(exe_prefix, os.pathsep, os.getenv('PATH'))
H A Dtest_cmd_line.py365 path = path1 + os.pathsep + path2
H A Dtest_posix.py1926 path = os.pathsep.join((temp_dir, os.environ['PATH']))
/kernel/linux/linux-5.10/Documentation/sphinx/
H A Dkfigure.py92 for folder in envpath.split(os.pathsep):
/kernel/linux/linux-6.6/Documentation/sphinx/
H A Dkfigure.py84 for folder in envpath.split(os.pathsep):
/third_party/node/deps/v8/tools/dev/
H A Dgm.py124 for path in os.environ["PATH"].split(os.pathsep):
/third_party/python/Lib/venv/
H A D__init__.py119 if os.pathsep in os.fspath(env_dir):
121 f'it contains the PATH separator {os.pathsep}.')
/third_party/node/deps/v8/tools/release/
H A Dcommon_includes.py66 new_path = path_to_depot_tools + os.pathsep + os.environ.get('PATH')
/third_party/python/Tools/wasm/
H A Dwasm_build.py517 env[key] = os.pathsep.join(os.fspath(p) for p in new_path)
/third_party/node/tools/gyp/pylib/gyp/
H A Dmsvs_emulation.py1143 setting = os.path.dirname(sys.executable) + os.pathsep + setting
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dmsvs_emulation.py1134 setting = os.path.dirname(sys.executable) + os.pathsep + setting
/third_party/python/Lib/test/test_zoneinfo/
H A Dtest_zoneinfo.py1556 (f"/a/b/c{os.pathsep}/d/e/f", ["/a/b/c", "/d/e/f"]),
1590 path_var = os.pathsep.join(input_paths)
/third_party/python/Lib/lib2to3/tests/
H A Dtest_fixers.py3836 return os.path.pathsep.join(path.split("/"))

Completed in 38 milliseconds

1234