/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'),
|
D | test_build_clib.py | 11 from distutils.spawn import find_executable 130 if find_executable(ccmd[0]) is None:
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_spawn.py | 10 from distutils.spawn import find_executable 72 rv = find_executable(program, path=tmp_dir) 77 rv = find_executable(program_noeext, path=tmp_dir) 82 rv = find_executable(program) 87 rv = find_executable(dont_exist_program , path=tmp_dir) 95 rv = find_executable(program)
|
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_sdist.py | 28 from distutils.spawn import find_executable 136 @unittest.skipIf(find_executable('tar') is None, 138 @unittest.skipIf(find_executable('gzip') is None, 442 @unittest.skipIf(find_executable('tar') is None, 444 @unittest.skipIf(find_executable('gzip') is None,
|
D | test_archive_util.py | 14 from distutils.spawn import find_executable, spawn 29 ZIP_SUPPORT = find_executable('zip') 145 @unittest.skipUnless(find_executable('tar') and find_executable('gzip') 202 @unittest.skipUnless(find_executable('compress'),
|
/external/bcc/tests/python/ |
D | utils.py | 2 from distutils.spawn import find_executable 5 path = find_executable(name)
|
/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
|
D | emxccompiler.py | 299 from distutils.spawn import find_executable 302 gcc_exe = find_executable('gcc')
|
/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'):
|
/external/llvm/utils/ |
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")
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/ |
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")
|
/external/llvm/test/Bindings/Go/ |
D | lit.local.cfg | 12 def find_executable(executable, path=None): 42 path = find_executable(args[0])
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bindings/Go/ |
D | lit.local.cfg | 12 def find_executable(executable, path=None): 42 path = find_executable(args[0])
|
/external/libcxx/utils/libcxx/sym_check/ |
D | extract.py | 32 return distutils.spawn.find_executable('nm') 118 return distutils.spawn.find_executable('readelf')
|
/external/python/cpython3/Lib/distutils/ |
D | spawn.py | 64 executable = find_executable(executable) or executable 169 def find_executable(executable, path=None): function
|
/external/swiftshader/third_party/LLVM/utils/ |
D | llvmbuild | 123 def find_executable(executable, path=None): 170 parser.add_option("--cc", default=find_executable("cc"), 172 parser.add_option("--cxx", default=find_executable("c++"), 219 options.cc = find_executable(options.cc) 220 options.cxx = find_executable(options.cxx) 716 program = find_executable("make")
|
/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/protobuf/python/ |
D | setup.py | 21 from distutils.spawn import find_executable 35 protoc = find_executable("protoc")
|
/external/libcxx/utils/ |
D | not.py | 31 prog = distutils.spawn.find_executable(argv[0])
|
/external/python/cpython3/Modules/_decimal/tests/ |
D | formathelper.py | 35 from distutils.spawn import find_executable 142 elif find_executable('locale'):
|