HomeSort by relevance Sort by last modified time
    Searched refs:find_executable (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/valgrind/main/coregrind/m_initimg/
priv_initimg_pathscan.h 37 extern const HChar* ML_(find_executable) ( const HChar* exec );
initimg-pathscan.c 132 const HChar* ML_(find_executable) ( const HChar* exec ) function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_bdist_rpm.py 14 from distutils.spawn import find_executable namespace
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_spawn.py 8 from distutils.spawn import spawn, find_executable namespace
test_build_clib.py 11 from distutils.spawn import find_executable namespace
133 if find_executable(ccmd[0]) is None:
test_archive_util.py 15 from distutils.spawn import find_executable, spawn namespace
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 namespace
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 namespace
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_spawn.py 8 from distutils.spawn import spawn, find_executable namespace
test_build_clib.py 11 from distutils.spawn import find_executable namespace
133 if find_executable(ccmd[0]) is None:
test_archive_util.py 15 from distutils.spawn import find_executable, spawn namespace
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 namespace
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/protobuf/python/
setup.py 11 from distutils.spawn import find_executable namespace
24 protoc = find_executable("protoc")
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
posix_platform_backend.py 72 return bool(distutils.spawn.find_executable(application))
85 application = distutils.spawn.find_executable(application)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
cygwinccompiler.py 442 from distutils.spawn import find_executable namespace
445 gcc_exe = os.environ.get('CC') or find_executable('gcc')
446 ld_exe = os.environ.get('LD') or find_executable('ld')
472 dllwrap_exe = os.environ.get('DLLWRAP') or find_executable('dllwrap')
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 namespace
302 gcc_exe = find_executable('gcc')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
cygwinccompiler.py 442 from distutils.spawn import find_executable namespace
445 gcc_exe = os.environ.get('CC') or find_executable('gcc')
446 ld_exe = os.environ.get('LD') or find_executable('ld')
472 dllwrap_exe = os.environ.get('DLLWRAP') or find_executable('dllwrap')
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 namespace
302 gcc_exe = find_executable('gcc')
  /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")
  /external/chromium_org/third_party/protobuf/python/
setup.py 24 from distutils.spawn import find_executable namespace
40 protoc = find_executable("protoc")
  /external/chromium_org/tools/real_world_impact/
real_world_impact.py 24 from distutils.spawn import find_executable namespace
98 if not find_executable("wget"):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_shutil.py 12 from distutils.spawn import find_executable, spawn namespace
40 ZIP_SUPPORT = find_executable('zip')
436 @unittest.skipUnless(find_executable('tar') and find_executable('gzip'),
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_shutil.py 12 from distutils.spawn import find_executable, spawn namespace
40 ZIP_SUPPORT = find_executable('zip')
436 @unittest.skipUnless(find_executable('tar') and find_executable('gzip'),

Completed in 239 milliseconds

1 2 3