/external/libcxx/utils/not/ |
not.py | 22 prog = distutils.spawn.find_executable(argv[0])
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_bdist_rpm.py | 14 from distutils.spawn import find_executable 50 if (find_executable('rpm') is None or 51 find_executable('rpmbuild') is None): 95 if (find_executable('rpm') is None or 96 find_executable('rpmbuild') is None):
|
test_build_clib.py | 11 from distutils.spawn import find_executable 133 if find_executable(ccmd[0]) is None:
|
test_spawn.py | 8 from distutils.spawn import spawn, find_executable
|
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'),
|
test_sdist.py | 30 from distutils.spawn import find_executable 139 if (find_executable('tar') is None or 140 find_executable('gzip') is None): 331 if (find_executable('tar') is None or 332 find_executable('gzip') is None):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_bdist_rpm.py | 14 from distutils.spawn import find_executable 50 if (find_executable('rpm') is None or 51 find_executable('rpmbuild') is None): 95 if (find_executable('rpm') is None or 96 find_executable('rpmbuild') is None):
|
test_build_clib.py | 11 from distutils.spawn import find_executable 133 if find_executable(ccmd[0]) is None:
|
test_spawn.py | 8 from distutils.spawn import spawn, find_executable
|
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'),
|
test_sdist.py | 30 from distutils.spawn import find_executable 139 if (find_executable('tar') is None or 140 find_executable('gzip') is None): 331 if (find_executable('tar') is None or 332 find_executable('gzip') is None):
|
/external/llvm/test/Bindings/Go/ |
lit.local.cfg | 12 def find_executable(executable, path=None): 42 path = find_executable(args[0])
|
/external/boringssl/src/util/bot/go/ |
env.py | 48 exe = bootstrap.find_executable(exe, [bootstrap.WORKSPACE])
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
spawn.py | 5 Also provides the 'find_executable()' to search the path for a given 64 executable = find_executable(executable) or executable 83 executable = find_executable(executable) or executable 177 def find_executable(executable, path=None): function
|
emxccompiler.py | 299 from distutils.spawn import find_executable 302 gcc_exe = find_executable('gcc')
|
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
spawn.py | 5 Also provides the 'find_executable()' to search the path for a given 64 executable = find_executable(executable) or executable 83 executable = find_executable(executable) or executable 177 def find_executable(executable, path=None): function
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
spawn.py | 5 Also provides the 'find_executable()' to search the path for a given 64 executable = find_executable(executable) or executable 83 executable = find_executable(executable) or executable 177 def find_executable(executable, path=None): function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
spawn.py | 5 Also provides the 'find_executable()' to search the path for a given 64 executable = find_executable(executable) or executable 83 executable = find_executable(executable) or executable 177 def find_executable(executable, path=None): function
|
/external/valgrind/coregrind/m_initimg/ |
priv_initimg_pathscan.h | 37 extern const HChar* ML_(find_executable) ( const HChar* exec );
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/ |
posix_platform_backend.py | 87 return bool(distutils.spawn.find_executable(application)) 100 application = distutils.spawn.find_executable(application)
|
/external/libcxx/utils/sym_check/sym_check/ |
extract.py | 21 return distutils.spawn.find_executable('nm') 104 return distutils.spawn.find_executable('readelf')
|
util.py | 85 _cppfilt_exe = distutils.spawn.find_executable('c++filt')
|
/external/vulkan-validation-layers/ |
determine_vs_version.py | 35 def find_executable(program): function 76 foundExeName = find_executable(exeName)
|
/external/protobuf/python/ |
setup.py | 24 from distutils.spawn import find_executable 40 protoc = find_executable("protoc")
|
/external/llvm/utils/ |
llvm-compilers-check | 83 def find_executable(executable, path=None): 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")
|