Home
last modified time | relevance | path

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

123

/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_spawn.py8 from distutils.spawn import spawn, find_executable
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,
/external/vulkan-validation-layers/
Ddetermine_vs_version.py27 def find_executable(program): function
68 foundExeName = find_executable(exeName)
/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/llvm/test/Bindings/Go/
Dlit.local.cfg12 def find_executable(executable, path=None):
42 path = find_executable(args[0])
/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/libcxx/utils/libcxx/sym_check/
Dextract.py32 return distutils.spawn.find_executable('nm')
118 return distutils.spawn.find_executable('readelf')
Dutil.py60 _cppfilt_exe = distutils.spawn.find_executable('c++filt')
/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
Dinitimg-darwin.c69 exe_name = ML_(find_executable)( VG_(args_the_exename) ); in load_client()
/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/
Dnot.py31 prog = distutils.spawn.find_executable(argv[0])
Dmerge_archives.py102 ar_exe = distutils.spawn.find_executable('ar')
/external/protobuf/python/
Dsetup.py21 from distutils.spawn import find_executable
35 protoc = find_executable("protoc")
/external/boringssl/src/util/bot/go/
Denv.py48 exe = bootstrap.find_executable(exe, [bootstrap.WORKSPACE])
Dbootstrap.py270 def find_executable(name, workspaces): function
/external/python/cpython2/Lib/test/
Dtest_shutil.py12 from distutils.spawn import find_executable
40 ZIP_SUPPORT = find_executable('zip')
432 @unittest.skipUnless(find_executable('tar'),
503 @unittest.skipUnless(find_executable('zip'),
529 @unittest.skipUnless(find_executable('unzip'),
/external/elfutils/libdwfl/
Dlink_map.c675 find_executable (Dwfl *dwfl, GElf_Addr at_phdr, GElf_Addr at_entry, in find_executable() function
936 ? find_executable (dwfl, phdr, entry, in dwfl_link_map_report()
1015 r_debug_vaddr = find_executable (dwfl, 0, 0, &elfclass, &elfdata, in dwfl_link_map_report()
/external/python/cpython2/Tools/msi/
Dmsi.py8 from distutils.spawn import find_executable
137 gendef = find_executable('gendef')
138 dlltool = find_executable('dlltool')

123