Searched refs:find_executable (Results 1 – 25 of 26) sorted by relevance
12
/third_party/python/Lib/distutils/tests/ |
D | test_spawn.py | 9 from distutils.spawn import find_executable 60 rv = find_executable(program, path=tmp_dir) 65 rv = find_executable(program_noeext, path=tmp_dir) 70 rv = find_executable(program) 75 rv = find_executable(dont_exist_program , path=tmp_dir) 85 rv = find_executable(program) 90 rv = find_executable(program) 99 rv = find_executable(program) 104 rv = find_executable(program) 117 rv = find_executable(program) [all …]
|
D | test_bdist_rpm.py | 11 from distutils.spawn import find_executable 48 @unittest.skipIf(find_executable('rpm') is None, 50 @unittest.skipIf(find_executable('rpmbuild') is None, 92 @unittest.skipIf(find_executable('rpm') is None, 94 @unittest.skipIf(find_executable('rpmbuild') is None,
|
D | test_cygwinccompiler.py | 38 self.old_find_executable = cygwinccompiler.find_executable 39 cygwinccompiler.find_executable = self._find_executable 49 cygwinccompiler.find_executable = self.old_find_executable
|
D | test_archive_util.py | 14 from distutils.spawn import find_executable, spawn 31 ZIP_SUPPORT = find_executable('zip') 147 @unittest.skipUnless(find_executable('tar') and find_executable('gzip') 204 @unittest.skipUnless(find_executable('compress'),
|
D | test_sdist.py | 29 from distutils.spawn import find_executable 137 @unittest.skipIf(find_executable('tar') is None, 139 @unittest.skipIf(find_executable('gzip') is None, 443 @unittest.skipIf(find_executable('tar') is None, 445 @unittest.skipIf(find_executable('gzip') is None,
|
/third_party/python/Lib/distutils/ |
D | spawn.py | 48 executable = find_executable(cmd[0]) 95 def find_executable(executable, path=None): function
|
D | cygwinccompiler.py | 59 from distutils.spawn import find_executable 378 if find_executable(executable) is None:
|
/third_party/protobuf/python/ |
D | setup.py | 20 from distutils.spawn import find_executable 34 protoc = find_executable("protoc")
|
/third_party/python/Modules/_decimal/tests/ |
D | formathelper.py | 35 from distutils.spawn import find_executable 142 elif find_executable('locale'):
|
/third_party/node/ |
D | configure | 23 from distutils.spawn import find_executable as which
|
D | android-configure | 23 from distutils.spawn import find_executable as which
|
/third_party/protobuf/python/compatibility_tests/v2.5.0/ |
D | setup.py | 16 from distutils.spawn import find_executable
|
/third_party/elfutils/libdwfl/ |
D | link_map.c | 696 find_executable (Dwfl *dwfl, GElf_Addr at_phdr, GElf_Addr at_entry, in find_executable() function 994 ? find_executable (dwfl, phdr, entry, in dwfl_link_map_report() 1098 r_debug_vaddr = find_executable (dwfl, 0, 0, &elfclass, &elfdata, in dwfl_link_map_report()
|
/third_party/python/ |
D | setup.py | 54 from distutils.spawn import find_executable 690 if not find_executable('dpkg-architecture'): 1083 elif find_executable('ldd'):
|
/third_party/skia/third_party/externals/microhttpd/ |
D | ltmain.sh | 4285 char *find_executable (const char *wrapper); 4422 tmp_pathspec = find_executable (argv[0]); 4624 find_executable (const char *wrapper)
|
/third_party/libabigail/ |
D | ltmain.sh | 4265 char *find_executable (const char *wrapper); 4402 tmp_pathspec = find_executable (argv[0]); 4604 find_executable (const char *wrapper)
|
/third_party/python/Lib/test/support/ |
D | __init__.py | 1716 if spawn.find_executable(cmd[0]) is None:
|
/third_party/libffi/ |
D | ltmain.sh | 5658 char *find_executable (const char *wrapper); 5800 tmp_pathspec = find_executable (argv[0]); 6002 find_executable (const char *wrapper)
|
/third_party/node/deps/cares/ |
D | ltmain.sh | 5919 char *find_executable (const char *wrapper); 6061 tmp_pathspec = find_executable (argv[0]); 6263 find_executable (const char *wrapper)
|
/third_party/libevdev/build-aux/ |
D | ltmain.sh | 5651 char *find_executable (const char *wrapper); 5793 tmp_pathspec = find_executable (argv[0]); 5995 find_executable (const char *wrapper)
|
/third_party/skia/third_party/externals/libpng/ |
D | ltmain.sh | 5658 char *find_executable (const char *wrapper); 5800 tmp_pathspec = find_executable (argv[0]); 6002 find_executable (const char *wrapper)
|
/third_party/curl/ |
D | ltmain.sh | 5907 char *find_executable (const char *wrapper); 6049 tmp_pathspec = find_executable (argv[0]); 6251 find_executable (const char *wrapper)
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0a4.rst | 353 :func:`shutil.which` and :func:`distutils.spawn.find_executable` now use
|
/third_party/python/patches/ |
D | cpython_mingw_v3.10.2.patch | 800 from distutils.spawn import find_executable 1039 - if find_executable(executable) is None: 1181 - # get_versions calls distutils.spawn.find_executable on
|
/third_party/python/Doc/distutils/ |
D | apiref.rst | 1446 Also provides :func:`find_executable` to search the path for a given executable
|
12