HomeSort by relevance Sort by last modified time
    Searched refs:executable (Results 126 - 150 of 817) sorted by null

1 2 3 4 56 7 8 91011>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
locref2.d 8 # PIC relocation is ok when building an executable.
tls-local-57.d 8 # An executable with a R_CRIS_32_GOT_GD against a local symbol.
tls-local-58.d 8 # An executable with a R_CRIS_32_GOT_GD and a R_CRIS_16_GOT_GD against
  /cts/
OldCtsBuild.mk 39 define cts-get-executable-paths
40 $(foreach executable,$(1),$(CTS_TESTCASES_OUT)/$(executable))
  /external/autotest/client/site_tests/camera_V4L2/
camera_V4L2.py 44 executable = os.path.join(self.bindir, "media_v4l2_is_capture_device")
45 cmd = "%s %s" % (executable, device)
70 self.executable = os.path.join(self.bindir, "media_v4l2_unittest")
71 cmd = "%s --device=%s" % (self.executable, device)
147 executable = os.path.join(self.bindir, "media_v4l2_test")
149 cmd = "%s %s" % (executable, " ".join(options))
  /external/chromium-trace/catapult/third_party/gsutil/third_party/python-gflags/
gflags2man.py 102 """Given an executable filename, find in the PATH or find absolute path.
104 filename An executable filename (string)
169 def __init__(self, executable):
170 """Create object with executable.
172 executable Program to execute (string)
174 self.long_name = executable
175 self.name = os.path.basename(executable) # name
178 self.executable = GetRealPath(executable) # name of the program
192 if not self.executable
    [all...]
  /external/chromium-trace/catapult/third_party/python_gflags/
gflags2man.py 102 """Given an executable filename, find in the PATH or find absolute path.
104 filename An executable filename (string)
169 def __init__(self, executable):
170 """Create object with executable.
172 executable Program to execute (string)
174 self.long_name = executable
175 self.name = os.path.basename(executable) # name
178 self.executable = GetRealPath(executable) # name of the program
192 if not self.executable
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_osx_support.py 29 def _find_executable(executable, path=None):
30 """Tries to find 'executable' in the directories listed in 'path'.
39 base, ext = os.path.splitext(executable)
42 executable = executable + '.exe'
44 if not os.path.isfile(executable):
46 f = os.path.join(p, executable)
52 return executable
475 # 32-bit variant, even if the executable architecture is
  /prebuilts/gdb/linux-x86/lib/python2.7/
_osx_support.py 29 def _find_executable(executable, path=None):
30 """Tries to find 'executable' in the directories listed in 'path'.
39 base, ext = os.path.splitext(executable)
42 executable = executable + '.exe'
44 if not os.path.isfile(executable):
46 f = os.path.join(p, executable)
52 return executable
475 # 32-bit variant, even if the executable architecture is
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_osx_support.py 29 def _find_executable(executable, path=None):
30 """Tries to find 'executable' in the directories listed in 'path'.
39 base, ext = os.path.splitext(executable)
42 executable = executable + '.exe'
44 if not os.path.isfile(executable):
46 f = os.path.join(p, executable)
52 return executable
475 # 32-bit variant, even if the executable architecture is
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_osx_support.py 29 def _find_executable(executable, path=None):
30 """Tries to find 'executable' in the directories listed in 'path'.
39 base, ext = os.path.splitext(executable)
42 executable = executable + '.exe'
44 if not os.path.isfile(executable):
46 f = os.path.join(p, executable)
52 return executable
475 # 32-bit variant, even if the executable architecture is
  /art/runtime/
oat_file.cc 74 // 1) Allocate an instance through the standard constructor (location, executable)
90 bool executable,
96 OatFileBase(const std::string& filename, bool executable) : OatFile(filename, executable) {}
106 bool executable,
138 bool executable,
142 std::unique_ptr<OatFileBase> ret(new kOatFileBaseSubType(location, executable));
149 executable,
495 DlOpenOatFile(const std::string& filename, bool executable)
496 : OatFileBase(filename, executable),
    [all...]
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/_setup/py3/
shell.py 129 for arg in [_sys.executable, name]:
137 argv = [_sys.executable, name]
211 for arg in [_sys.executable, name]:
219 argv = [_sys.executable, name]
326 def frompath(executable):
327 """ Find executable in PATH """
334 ext = _os.path.splitext(executable)[1]
342 if not _os.path.isfile(executable + ext):
344 fname = _os.path.join(path, executable + ext)
349 return executable + ex
    [all...]
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/_setup/py3/
shell.py 129 for arg in [_sys.executable, name]:
137 argv = [_sys.executable, name]
211 for arg in [_sys.executable, name]:
219 argv = [_sys.executable, name]
326 def frompath(executable):
327 """ Find executable in PATH """
334 ext = _os.path.splitext(executable)[1]
342 if not _os.path.isfile(executable + ext):
344 fname = _os.path.join(path, executable + ext)
349 return executable + ex
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/
NdkHelper.java 132 * "${NdkRoot}/prebuilt/<platform>/bin/". If the executable is not found, it simply returns
133 * the name of the executable (which is equal to assuming that it is available on the path).
135 private static synchronized IPath getFullPathTo(String executable) {
137 executable += ".exe";
143 return new Path(executable);
151 .append(executable);
158 return new Path(executable);
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
bundlebuilder.py 288 # start a real new process. Also, the executable name must match
290 # deliberately with argv[0]. The actual Python executable is
292 # sys.executable later.
299 executable = os.path.join(execdir, "%(executable)s")
318 os.environ["PYTHONEXECUTABLE"] = executable
321 os.execve(executable, sys.argv, os.environ)
361 # platform, name of the subfolder of Contents that contains the executable.
365 # executable in the bundle will be a small wrapper that invokes
369 # The main executable. If a Python main program is specifie
373 executable = None variable in class:AppBuilder
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
bundlebuilder.py 288 # start a real new process. Also, the executable name must match
290 # deliberately with argv[0]. The actual Python executable is
292 # sys.executable later.
299 executable = os.path.join(execdir, "%(executable)s")
318 os.environ["PYTHONEXECUTABLE"] = executable
321 os.execve(executable, sys.argv, os.environ)
361 # platform, name of the subfolder of Contents that contains the executable.
365 # executable in the bundle will be a small wrapper that invokes
369 # The main executable. If a Python main program is specifie
373 executable = None variable in class:AppBuilder
    [all...]
  /external/autotest/client/site_tests/platform_CompressedSwap/
platform_CompressedSwap.py 18 executable = 'hog' variable in class:platform_CompressedSwap
25 utils.make(self.executable)
92 cmd = [ self.srcdir + '/' + self.executable, '50' ]
  /external/elfutils/libdwfl/
dwfl_build_id_find_elf.c 147 /* When dwfl_core_file_report was called with a non-NULL executable file
149 recorded executable file when MOD was identified as main executable
150 (which then triggers opening and reporting of the executable). */
151 const char *executable = mod->dwfl->user_core->executable_for_core; local
152 int fd = open (executable, O_RDONLY);
155 *file_name = strdup (executable);
  /toolchain/binutils/binutils-2.25/libiberty/
pex-djgpp.c 116 pex_djgpp_exec_child (struct pex_obj *obj, int flags, const char *executable,
206 (P_WAIT, executable, argv, env));
209 (P_WAIT, executable, argv));
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/
tlsbinpic.s 29 ! GD -> IE because variable is not defined in executable
44 ! GD -> IE because variable is not defined in executable where
60 ! GD -> LE with global variable defined in executable
75 ! GD -> LE with local variable defined in executable
90 ! GD -> LE with hidden variable defined in executable
105 ! LD -> LE with local variable defined in executable
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
indic.bat 10 REM to work, the perl executable must be on the path. We recommend
  /external/llvm/test/MC/X86/AlignedBundling/
different-sections.s 6 # Test two different executable sections with bundling.
  /external/ltrace/testsuite/ltrace.minor/
trace-fork.exp 10 if { [ ltrace_compile "${srcdir}/${subdir}/${testfile}.c" "${objdir}/${subdir}/${binfile}" executable {debug} ] != "" } {
  /external/mesa3d/src/mapi/glapi/
SConscript 5 from sys import executable as python_cmd

Completed in 632 milliseconds

1 2 3 4 56 7 8 91011>>