/external/python/cpython2/Lib/distutils/tests/ |
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:
|
D | test_spawn.py | 8 from distutils.spawn import spawn, find_executable
|
D | test_sdist.py | 30 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/ |
D | determine_vs_version.py | 27 def find_executable(program): function 68 foundExeName = find_executable(exeName)
|
/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/llvm/test/Bindings/Go/ |
D | lit.local.cfg | 12 def find_executable(executable, path=None): 42 path = find_executable(args[0])
|
/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/libcxx/utils/libcxx/sym_check/ |
D | extract.py | 32 return distutils.spawn.find_executable('nm') 118 return distutils.spawn.find_executable('readelf')
|
D | util.py | 60 _cppfilt_exe = distutils.spawn.find_executable('c++filt')
|
/external/valgrind/coregrind/m_initimg/ |
D | priv_initimg_pathscan.h | 37 extern const HChar* ML_(find_executable) ( const HChar* exec );
|
D | initimg-pathscan.c | 122 const HChar* ML_(find_executable) ( const HChar* exec ) in ML_() argument
|
D | initimg-darwin.c | 69 exe_name = ML_(find_executable)( VG_(args_the_exename) ); in load_client()
|
/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/libcxx/utils/ |
D | not.py | 31 prog = distutils.spawn.find_executable(argv[0])
|
D | merge_archives.py | 102 ar_exe = distutils.spawn.find_executable('ar')
|
/external/protobuf/python/ |
D | setup.py | 21 from distutils.spawn import find_executable 35 protoc = find_executable("protoc")
|
/external/boringssl/src/util/bot/go/ |
D | env.py | 48 exe = bootstrap.find_executable(exe, [bootstrap.WORKSPACE])
|
D | bootstrap.py | 270 def find_executable(name, workspaces): function
|
/external/python/cpython2/Lib/test/ |
D | test_shutil.py | 12 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/ |
D | link_map.c | 675 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/ |
D | msi.py | 8 from distutils.spawn import find_executable 137 gendef = find_executable('gendef') 138 dlltool = find_executable('dlltool')
|