Home
last modified time | relevance | path

Searched refs:find_executable (Results 1 – 25 of 67) sorted by relevance

123

/external/python/cpython2/Lib/distutils/tests/
Dtest_spawn.py11 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)
Dtest_bdist_rpm.py19 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,
Dtest_archive_util.py15 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'),
Dtest_build_clib.py11 from distutils.spawn import find_executable
130 if find_executable(ccmd[0]) is None:
/external/python/cpython3/Lib/distutils/tests/
Dtest_spawn.py10 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)
Dtest_bdist_rpm.py11 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,
Dtest_cygwinccompiler.py38 self.old_find_executable = cygwinccompiler.find_executable
39 cygwinccompiler.find_executable = self._find_executable
49 cygwinccompiler.find_executable = self.old_find_executable
Dtest_sdist.py28 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,
Dtest_archive_util.py14 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/
Dutils.py2 from distutils.spawn import find_executable
5 path = find_executable(name)
/external/python/cpython2/Lib/distutils/
Dcygwinccompiler.py415 from distutils.spawn import find_executable
418 gcc_exe = find_executable('gcc')
430 ld_exe = find_executable('ld')
442 dllwrap_exe = find_executable('dllwrap')
Dspawn.py68 executable = find_executable(executable) or executable
91 executable = find_executable(executable) or executable
204 def find_executable(executable, path=None): function
Demxccompiler.py299 from distutils.spawn import find_executable
302 gcc_exe = find_executable('gcc')
/external/python/cpython2/PC/VS9.0/
Dbuild_ssl.py34 from distutils.spawn import find_executable
160 if not find_executable('nmake.exe'):
174 if not find_executable('nasm.exe'):
/external/llvm/utils/
Dllvm-compilers-check83 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/
Dllvm-compilers-check83 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/
Dlit.local.cfg12 def find_executable(executable, path=None):
42 path = find_executable(args[0])
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bindings/Go/
Dlit.local.cfg12 def find_executable(executable, path=None):
42 path = find_executable(args[0])
/external/libcxx/utils/libcxx/sym_check/
Dextract.py32 return distutils.spawn.find_executable('nm')
118 return distutils.spawn.find_executable('readelf')
/external/python/cpython3/Lib/distutils/
Dspawn.py64 executable = find_executable(executable) or executable
169 def find_executable(executable, path=None): function
/external/swiftshader/third_party/LLVM/utils/
Dllvmbuild123 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/
D2018-09-03-23-23-32.bpo-34530.h_Xsu7.rst1 ``distutils.spawn.find_executable()`` now falls back on :data:`os.defpath`
/external/protobuf/python/
Dsetup.py21 from distutils.spawn import find_executable
35 protoc = find_executable("protoc")
/external/libcxx/utils/
Dnot.py31 prog = distutils.spawn.find_executable(argv[0])
/external/python/cpython3/Modules/_decimal/tests/
Dformathelper.py35 from distutils.spawn import find_executable
142 elif find_executable('locale'):

123