/external/python/cpython2/Modules/ |
D | getpath.c | 384 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/ |
D | getpath.c | 811 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/ |
D | 2018-09-03-23-23-32.bpo-34530.h_Xsu7.rst | 1 ``distutils.spawn.find_executable()`` now falls back on :data:`os.defpath`
|
/external/python/cpython2/Lib/ |
D | os2emxpath.py | 29 defpath = '.;C:\\bin' variable
|
D | ntpath.py | 31 defpath = '.;C:\\bin' variable 33 defpath = '\\Windows' variable
|
D | macpath.py | 23 defpath = ':' variable
|
D | os.py | 120 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep, 375 envpath = defpath
|
D | posixpath.py | 35 defpath = ':/bin:/usr/bin' variable
|
D | uuid.py | 298 path = os.environ.get("PATH", os.defpath).split(os.pathsep)
|
/external/swiftshader/third_party/LLVM/utils/lit/lit/ |
D | Util.py | 64 paths = os.defpath
|
/external/python/cpython3/Lib/distutils/ |
D | spawn.py | 176 path = os.environ.get('PATH', os.defpath)
|
/external/python/cpython3/Lib/ |
D | macpath.py | 11 defpath = ':' variable
|
D | os.py | 92 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep, 656 path_list = defpath
|
D | posixpath.py | 21 defpath = ':/bin:/usr/bin' variable
|
D | ntpath.py | 17 defpath = '.;C:\\bin' variable
|
D | shutil.py | 1141 path = os.environ.get("PATH", os.defpath)
|
/external/python/cpython2/Lib/distutils/ |
D | spawn.py | 211 path = os.environ.get('PATH', os.defpath)
|
/external/libcxx/utils/libcxx/ |
D | util.py | 114 paths = os.defpath
|
/external/python/cpython2/Lib/plat-riscos/ |
D | riscospath.py | 21 defpath = '<Run$Dir>' variable
|
/external/llvm/utils/lit/lit/ |
D | util.py | 87 paths = os.defpath
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/ |
D | util.py | 202 paths = os.defpath
|
/external/python/cpython3/Lib/test/ |
D | test_os.py | 746 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/ |
D | test_uuid.py | 445 path = os.environ.get("PATH", os.defpath).split(os.pathsep)
|
/external/clang/utils/analyzer/ |
D | SATestBuild.py | 94 paths = os.defpath
|
/external/autotest/client/common_lib/ |
D | pexpect.py | 1775 p = os.defpath
|