Home
last modified time | relevance | path

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

123

/external/python/cpython3/Lib/distutils/tests/
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_archive_util.py14 from distutils.spawn import find_executable, spawn
29 ZIP_SUPPORT = find_executable('zip')
144 @unittest.skipUnless(find_executable('tar') and find_executable('gzip')
201 @unittest.skipUnless(find_executable('compress'),
Dtest_sdist.py28 from distutils.spawn import find_executable
134 @unittest.skipIf(find_executable('tar') is None,
136 @unittest.skipIf(find_executable('gzip') is None,
434 @unittest.skipIf(find_executable('tar') is None,
436 @unittest.skipIf(find_executable('gzip') is None,
/external/python/cpython2/Lib/distutils/tests/
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:
Dtest_sdist.py30 from distutils.spawn import find_executable
322 @unittest.skipIf(find_executable('tar') is None,
324 @unittest.skipIf(find_executable('gzip') is None,
Dtest_spawn.py8 from distutils.spawn import spawn, find_executable
/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/vulkan-validation-layers/scripts/
Ddetermine_vs_version.py28 def find_executable(program): function
71 foundExeName = find_executable(exeName)
/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/llvm/test/Bindings/Go/
Dlit.local.cfg12 def find_executable(executable, path=None):
42 path = find_executable(args[0])
/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/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
Dcygwinccompiler.py61 from distutils.spawn import find_executable
380 if find_executable(executable) is None:
/external/protobuf/python/
Dsetup.py21 from distutils.spawn import find_executable
35 protoc = find_executable("protoc")
/external/python/cpython3/Modules/_decimal/tests/
Dformathelper.py35 from distutils.spawn import find_executable
142 elif find_executable('locale'):
/external/valgrind/coregrind/m_initimg/
Dpriv_initimg_pathscan.h37 extern const HChar* ML_(find_executable) ( const HChar* exec );
Dinitimg-pathscan.c122 const HChar* ML_(find_executable) ( const HChar* exec ) in ML_() argument
/external/libcxx/utils/
Dnot.py31 prog = distutils.spawn.find_executable(argv[0])
/external/boringssl/src/util/bot/go/
Denv.py48 exe = bootstrap.find_executable(exe, [bootstrap.WORKSPACE])

123