Home
last modified time | relevance | path

Searched refs:defpath (Results 1 – 25 of 31) sorted by relevance

12

/external/python/cpython2/Modules/
Dgetpath.c384 char *defpath = pythonpath; in calculate_path() local
555 char *delim = strchr(defpath, DELIM); in calculate_path()
557 if (defpath[0] != SEP) in calculate_path()
562 bufsz += delim - defpath + 1; in calculate_path()
564 bufsz += strlen(defpath) + 1; in calculate_path()
567 defpath = delim + 1; in calculate_path()
604 defpath = pythonpath; in calculate_path()
606 char *delim = strchr(defpath, DELIM); in calculate_path()
608 if (defpath[0] != SEP) { in calculate_path()
611 defpath[0] != (delim ? DELIM : L'\0')) { /* not empty */ in calculate_path()
[all …]
/external/python/cpython3/Modules/
Dgetpath.c811 wchar_t *defpath = calculate->pythonpath; in calculate_module_search_path() local
814 wchar_t *delim = wcschr(defpath, DELIM); in calculate_module_search_path()
816 if (defpath[0] != SEP) { in calculate_module_search_path()
822 bufsz += delim - defpath + 1; in calculate_module_search_path()
825 bufsz += wcslen(defpath) + 1; in calculate_module_search_path()
828 defpath = delim + 1; in calculate_module_search_path()
854 defpath = calculate->pythonpath; in calculate_module_search_path()
856 wchar_t *delim = wcschr(defpath, DELIM); in calculate_module_search_path()
858 if (defpath[0] != SEP) { in calculate_module_search_path()
861 defpath[0] != (delim ? DELIM : L'\0')) in calculate_module_search_path()
[all …]
/external/python/cpython2/Misc/NEWS.d/next/Library/
D2018-09-03-23-23-32.bpo-34530.h_Xsu7.rst1 ``distutils.spawn.find_executable()`` now falls back on :data:`os.defpath`
/external/python/cpython2/Lib/
Dos2emxpath.py29 defpath = '.;C:\\bin' variable
Dntpath.py31 defpath = '.;C:\\bin' variable
33 defpath = '\\Windows' variable
Dmacpath.py23 defpath = ':' variable
Dos.py120 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep,
375 envpath = defpath
Dposixpath.py35 defpath = ':/bin:/usr/bin' variable
Duuid.py298 path = os.environ.get("PATH", os.defpath).split(os.pathsep)
/external/swiftshader/third_party/LLVM/utils/lit/lit/
DUtil.py64 paths = os.defpath
/external/python/cpython3/Lib/distutils/
Dspawn.py176 path = os.environ.get('PATH', os.defpath)
/external/python/cpython3/Lib/
Dmacpath.py11 defpath = ':' variable
Dos.py92 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep,
656 path_list = defpath
Dposixpath.py21 defpath = ':/bin:/usr/bin' variable
Dntpath.py17 defpath = '.;C:\\bin' variable
Dshutil.py1141 path = os.environ.get("PATH", os.defpath)
/external/python/cpython2/Lib/distutils/
Dspawn.py211 path = os.environ.get('PATH', os.defpath)
/external/libcxx/utils/libcxx/
Dutil.py114 paths = os.defpath
/external/python/cpython2/Lib/plat-riscos/
Driscospath.py21 defpath = '<Run$Dir>' variable
/external/llvm/utils/lit/lit/
Dutil.py87 paths = os.defpath
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/
Dutil.py202 paths = os.defpath
/external/python/cpython3/Lib/test/
Dtest_os.py746 defpath_list = os.defpath.split(os.pathsep)
1489 def _execvpe_mockup(defpath=None): argument
1510 orig_defpath = os.defpath
1513 if defpath is not None:
1514 os.defpath = defpath
1519 os.defpath = orig_defpath
1568 with _execvpe_mockup(defpath=program_path) as calls:
/external/python/cpython2/Lib/test/
Dtest_uuid.py445 path = os.environ.get("PATH", os.defpath).split(os.pathsep)
/external/clang/utils/analyzer/
DSATestBuild.py94 paths = os.defpath
/external/autotest/client/common_lib/
Dpexpect.py1775 p = os.defpath

12