/aosp_15_r20/external/python/cpython3/Lib/distutils/tests/ |
D | test_spawn.py | 9 from distutils.spawn import find_executable 62 rv = find_executable(program, path=tmp_dir) 67 rv = find_executable(program_noeext, path=tmp_dir) 72 rv = find_executable(program) 77 rv = find_executable(dont_exist_program , path=tmp_dir) 87 rv = find_executable(program) 92 rv = find_executable(program) 101 rv = find_executable(program) 106 rv = find_executable(program) 119 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, 95 @unittest.skipIf(find_executable('rpm') is None, 97 @unittest.skipIf(find_executable('rpmbuild') is None,
|
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,
|
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
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/distutils/tests/ |
H A D | test_spawn.py | 9 from distutils.spawn import find_executable 62 rv = find_executable(program, path=tmp_dir) 67 rv = find_executable(program_noeext, path=tmp_dir) 72 rv = find_executable(program) 77 rv = find_executable(dont_exist_program , path=tmp_dir) 87 rv = find_executable(program) 92 rv = find_executable(program) 101 rv = find_executable(program) 106 rv = find_executable(program) 119 rv = find_executable(program) [all …]
|
H A 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, 95 @unittest.skipIf(find_executable('rpm') is None, 97 @unittest.skipIf(find_executable('rpmbuild') is None,
|
H A 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'),
|
H A 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,
|
H A 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
|
/aosp_15_r20/external/python/setuptools/setuptools/_distutils/tests/ |
D | test_spawn.py | 11 from distutils.spawn import find_executable 62 rv = find_executable(program, path=tmp_dir) 67 rv = find_executable(program_noeext, path=tmp_dir) 72 rv = find_executable(program) 77 rv = find_executable(dont_exist_program , path=tmp_dir) 87 rv = find_executable(program) 92 rv = find_executable(program) 101 rv = find_executable(program) 106 rv = find_executable(program) 119 rv = find_executable(program) [all …]
|
D | test_bdist_rpm.py | 11 from distutils.spawn import find_executable 51 @unittest.skipIf(find_executable('rpm') is None, 53 @unittest.skipIf(find_executable('rpmbuild') is None, 95 @unittest.skipIf(find_executable('rpm') is None, 97 @unittest.skipIf(find_executable('rpmbuild') is None,
|
D | test_sdist.py | 24 from distutils.spawn import find_executable 132 @unittest.skipIf(find_executable('tar') is None, 134 @unittest.skipIf(find_executable('gzip') is None, 439 @unittest.skipIf(find_executable('tar') is None, 441 @unittest.skipIf(find_executable('gzip') is None,
|
D | test_archive_util.py | 14 from distutils.spawn import find_executable, spawn 27 ZIP_SUPPORT = find_executable('zip') 143 @unittest.skipUnless(find_executable('tar') and find_executable('gzip') 200 @unittest.skipUnless(find_executable('compress'),
|
/aosp_15_r20/external/python/cpython2/Lib/distutils/tests/ |
D | test_spawn.py | 11 from distutils.spawn import spawn, find_executable 73 rv = find_executable(program, path=tmp_dir) 78 rv = find_executable(program_noeext, path=tmp_dir) 83 rv = find_executable(program) 88 rv = find_executable(dont_exist_program , path=tmp_dir) 97 rv = find_executable(program)
|
D | test_bdist_rpm.py | 19 from distutils.spawn import find_executable 53 @unittest.skipIf(find_executable('rpm') is None, 55 @unittest.skipIf(find_executable('rpmbuild') is None, 97 @unittest.skipIf(find_executable('rpm') is None, 99 @unittest.skipIf(find_executable('rpmbuild') is None,
|
D | test_archive_util.py | 15 from distutils.spawn import find_executable, spawn 30 ZIP_SUPPORT = find_executable('zip') 120 @unittest.skipUnless(find_executable('tar') and find_executable('gzip'), 173 @unittest.skipUnless(find_executable('compress'),
|
/aosp_15_r20/tools/acloud/ |
H A D | setup.py | 21 from distutils.spawn import find_executable 23 from shutil import which as find_executable unknown 42 PROTOC = find_executable("protoc")
|
/aosp_15_r20/external/avb/tools/transparency/ |
H A D | pixel_factory_image_verify.py | 72 self.fw_unpacker_path = distutils.spawn.find_executable('fbpacktool') 73 self.wget_path = distutils.spawn.find_executable('wget') 74 self.curl_path = distutils.spawn.find_executable('curl') 90 if not distutils.spawn.find_executable(cmd):
|
/aosp_15_r20/external/python/cpython2/Lib/distutils/ |
D | cygwinccompiler.py | 415 from distutils.spawn import find_executable 418 gcc_exe = find_executable('gcc') 430 ld_exe = find_executable('ld') 442 dllwrap_exe = find_executable('dllwrap')
|
D | spawn.py | 68 executable = find_executable(executable) or executable 91 executable = find_executable(executable) or executable 204 def find_executable(executable, path=None): function
|
/aosp_15_r20/external/perfetto/tools/ |
H A D | run_test_like_ci | 30 from shutil import which as find_executable unknown 32 from distutils.spawn import find_executable 80 default='podman' if find_executable('podman') else 'docker')
|
/aosp_15_r20/external/llvm/utils/ |
H A D | llvm-compilers-check | 83 def find_executable(executable, path=None): function 128 parser.add_option("--cc", default=find_executable("cc"), 130 parser.add_option("--cxx", default=find_executable("c++"), 174 options.cc = find_executable(options.cc) 175 options.cxx = find_executable(options.cxx) 565 program = find_executable("make")
|
/aosp_15_r20/external/python/cpython2/PC/VS9.0/ |
D | build_ssl.py | 34 from distutils.spawn import find_executable 160 if not find_executable('nmake.exe'): 174 if not find_executable('nasm.exe'):
|
/aosp_15_r20/external/cronet/third_party/boringssl/src/util/bot/go/ |
H A D | env.py | 38 def find_executable(name, goroot): function 60 exe = find_executable(exe, goroot)
|