Home
last modified time | relevance | path

Searched refs:executable (Results 1 – 25 of 1148) sorted by relevance

12345678910>>...46

/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pip/_vendor/distlib/
Dscripts.py53 def enquote_executable(executable): argument
54 if ' ' in executable:
59 if executable.startswith('/usr/bin/env '):
60 env, _executable = executable.split(' ', 1)
62 executable = '%s "%s"' % (env, _executable)
64 if not executable.startswith('"'):
65 executable = '"%s"' % executable
66 return executable
78 executable = None # for shebangs variable in ScriptMaker
97 def _get_alternate_executable(self, executable, options): argument
[all …]
/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/distlib/
Dscripts.py53 def enquote_executable(executable): argument
54 if ' ' in executable:
59 if executable.startswith('/usr/bin/env '):
60 env, _executable = executable.split(' ', 1)
62 executable = '%s "%s"' % (env, _executable)
64 if not executable.startswith('"'):
65 executable = '"%s"' % executable
66 return executable
78 executable = None # for shebangs variable in ScriptMaker
97 def _get_alternate_executable(self, executable, options): argument
[all …]
/prebuilts/clang/host/linux-x86/clang-r547379/python3/lib/python3.11/site-packages/pip/_vendor/distlib/
Dscripts.py53 def enquote_executable(executable): argument
54 if ' ' in executable:
59 if executable.startswith('/usr/bin/env '):
60 env, _executable = executable.split(' ', 1)
62 executable = '%s "%s"' % (env, _executable)
64 if not executable.startswith('"'):
65 executable = '"%s"' % executable
66 return executable
78 executable = None # for shebangs variable in ScriptMaker
97 def _get_alternate_executable(self, executable, options): argument
[all …]
/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/distlib/
Dscripts.py53 def enquote_executable(executable): argument
54 if ' ' in executable:
59 if executable.startswith('/usr/bin/env '):
60 env, _executable = executable.split(' ', 1)
62 executable = '%s "%s"' % (env, _executable)
64 if not executable.startswith('"'):
65 executable = '"%s"' % executable
66 return executable
78 executable = None # for shebangs variable in ScriptMaker
97 def _get_alternate_executable(self, executable, options): argument
[all …]
/prebuilts/cmake/linux-x86/share/cmake-3.22/Modules/
DFindIce.cmake54 Ice_SLICE2CONFLUENCE_EXECUTABLE - path to slice2confluence executable
55 Ice_SLICE2CPP_EXECUTABLE - path to slice2cpp executable
56 Ice_SLICE2CS_EXECUTABLE - path to slice2cs executable
57 Ice_SLICE2FREEZEJ_EXECUTABLE - path to slice2freezej executable
58 Ice_SLICE2FREEZE_EXECUTABLE - path to slice2freeze executable
59 Ice_SLICE2HTML_EXECUTABLE - path to slice2html executable
60 Ice_SLICE2JAVA_EXECUTABLE - path to slice2java executable
61 Ice_SLICE2JS_EXECUTABLE - path to slice2js executable
62 Ice_SLICE2MATLAB_EXECUTABLE - path to slice2matlab executable
63 Ice_SLICE2OBJC_EXECUTABLE - path to slice2objc executable
[all …]
DDeployQt4.cmake8 Functions to help assemble a standalone Qt4 executable.
43 fixup_qt4_executable(<executable>
47 fixes up a Qt4 executable using BundleUtilities so it is standalone
51 <executable> should point to the executable to be fixed-up.
70 install_qt4_plugin_path(plugin executable copy installed_plugin_path_var
74 (or <plugins_dir>) relative to <executable> and store the result in
85 install_qt4_plugin(plugin executable copy installed_plugin_path_var
89 directory (or <plugins_dir>) relative to <executable> and store the
95 install_qt4_executable(<executable>
99 fixes up a Qt4 executable using BundleUtilities so it is standalone
[all …]
DFindICU.cmake41 ICU_GENCNVAL_EXECUTABLE - path to gencnval executable
42 ICU_ICUINFO_EXECUTABLE - path to icuinfo executable
43 ICU_GENBRK_EXECUTABLE - path to genbrk executable
44 ICU_ICU-CONFIG_EXECUTABLE - path to icu-config executable
45 ICU_GENRB_EXECUTABLE - path to genrb executable
46 ICU_GENDICT_EXECUTABLE - path to gendict executable
47 ICU_DERB_EXECUTABLE - path to derb executable
48 ICU_PKGDATA_EXECUTABLE - path to pkgdata executable
49 ICU_UCONV_EXECUTABLE - path to uconv executable
50 ICU_GENCFU_EXECUTABLE - path to gencfu executable
[all …]
DBundleUtilities.cmake91 The result will be the full path name of the bundle's main executable
99 full path to an executable. If there is no such parent dir, then
100 simply return the dir containing the executable.
108 Takes either a ``.app`` directory name or the name of an executable
110 directory in ``<bundle_var>`` and the path to its main executable in
117 Scans ``<bundle>`` bundle recursively for all ``<exes_var>`` executable
154 Loop over all the executable and library files within ``<app>`` bundle (and
276 # is the name of the main executable.
296 # there is only one executable file that matches, then use it, otherwise
301 # But for now, pragmatically, it's an error. Expect the main executable
[all …]
/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/setuptools/_distutils/
Dspawn.py43 executable = find_executable(cmd[0])
44 if executable is not None:
45 cmd[0] = executable
75 def find_executable(executable, path=None): argument
81 _, ext = os.path.splitext(executable)
83 executable = executable + '.exe'
85 if os.path.isfile(executable):
86 return executable
105 f = os.path.join(p, executable)
/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/setuptools/_distutils/
Dspawn.py43 executable = find_executable(cmd[0])
44 if executable is not None:
45 cmd[0] = executable
75 def find_executable(executable, path=None): argument
81 _, ext = os.path.splitext(executable)
83 executable = executable + '.exe'
85 if os.path.isfile(executable):
86 return executable
105 f = os.path.join(p, executable)
/prebuilts/clang/host/linux-x86/clang-r547379/python3/lib/python3.11/site-packages/setuptools/_distutils/
Dspawn.py43 executable = find_executable(cmd[0])
44 if executable is not None:
45 cmd[0] = executable
75 def find_executable(executable, path=None): argument
81 _, ext = os.path.splitext(executable)
83 executable = executable + '.exe'
85 if os.path.isfile(executable):
86 return executable
105 f = os.path.join(p, executable)
/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/setuptools/_distutils/
Dspawn.py43 executable = find_executable(cmd[0])
44 if executable is not None:
45 cmd[0] = executable
75 def find_executable(executable, path=None): argument
81 _, ext = os.path.splitext(executable)
83 executable = executable + '.exe'
85 if os.path.isfile(executable):
86 return executable
105 f = os.path.join(p, executable)
/prebuilts/clang/host/linux-x86/clang-r547379/python3/lib/python3.11/distutils/
Dspawn.py48 executable = find_executable(cmd[0])
49 if executable is not None:
50 cmd[0] = executable
95 def find_executable(executable, path=None): argument
101 _, ext = os.path.splitext(executable)
103 executable = executable + '.exe'
105 if os.path.isfile(executable):
106 return executable
125 f = os.path.join(p, executable)
/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/distutils/
Dspawn.py48 executable = find_executable(cmd[0])
49 if executable is not None:
50 cmd[0] = executable
95 def find_executable(executable, path=None): argument
101 _, ext = os.path.splitext(executable)
103 executable = executable + '.exe'
105 if os.path.isfile(executable):
106 return executable
125 f = os.path.join(p, executable)
/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/distutils/
Dspawn.py48 executable = find_executable(cmd[0])
49 if executable is not None:
50 cmd[0] = executable
95 def find_executable(executable, path=None): argument
101 _, ext = os.path.splitext(executable)
103 executable = executable + '.exe'
105 if os.path.isfile(executable):
106 return executable
125 f = os.path.join(p, executable)
/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/distutils/
Dspawn.py48 executable = find_executable(cmd[0])
49 if executable is not None:
50 cmd[0] = executable
95 def find_executable(executable, path=None): argument
101 _, ext = os.path.splitext(executable)
103 executable = executable + '.exe'
105 if os.path.isfile(executable):
106 return executable
125 f = os.path.join(p, executable)
/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/prop_tgt/
DENABLE_EXPORTS.rst4 Specify whether an executable exports symbols for loadable modules.
6 Normally an executable does not export any symbols because it is the
7 final program. It is possible for an executable to export symbols to
9 will allow other targets to "link" to the executable with the
11 dependency on the executable is created for targets that link to it.
12 Handling of the executable on the link lines of the loadable modules
16 created along with the executable to list the exported symbols.
19 * On macOS, loadable modules link to the executable itself using the
22 * On AIX, a linker "import file" is created along with the executable
27 referencing the executable since the dynamic loader will
/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/command/
Dtry_run.rst28 executable and returns its exit code in ``<runResultVar>``. If the
29 executable was built, but failed to run, then ``<runResultVar>`` will be
71 Report the compile build output and the output from running the executable
76 Report the output from running the executable in a given variable.
81 Run the executable in the given directory. If no ``WORKING_DIRECTORY`` is
82 specified, the executable will run in ``<bindir>``.
97 When cross compiling, the executable compiled in the first step
101 the executable, but it will not try to run the executable unless the
104 presetting them in some CMake script file to the values the executable
109 Exit code if the executable were to be run on the target platform.
[all …]
/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/distutils/command/
Dbuild_scripts.py34 self.executable = None
100 executable = self.executable
102 executable = os.path.join(
106 executable = os.fsencode(executable)
107 shebang = b"#!" + executable + post_interp + b"\n"
/prebuilts/clang/host/linux-x86/clang-r547379/python3/lib/python3.11/distutils/command/
Dbuild_scripts.py34 self.executable = None
100 executable = self.executable
102 executable = os.path.join(
106 executable = os.fsencode(executable)
107 shebang = b"#!" + executable + post_interp + b"\n"
/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/distutils/command/
Dbuild_scripts.py34 self.executable = None
100 executable = self.executable
102 executable = os.path.join(
106 executable = os.fsencode(executable)
107 shebang = b"#!" + executable + post_interp + b"\n"
/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/distutils/command/
Dbuild_scripts.py34 self.executable = None
100 executable = self.executable
102 executable = os.path.join(
106 executable = os.fsencode(executable)
107 shebang = b"#!" + executable + post_interp + b"\n"
/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/
Dplatform.py161 def libc_ver(executable=None, lib='', version='', chunksize=16384): argument
176 if not executable:
187 executable = sys.executable
189 if not executable:
197 executable = os.path.realpath(executable)
198 with open(executable, 'rb') as f:
646 def architecture(executable=sys.executable, bits='', linkage=''): argument
675 if executable:
676 fileout = _syscmd_file(executable, '')
681 executable == sys.executable:
[all …]
/prebuilts/clang/host/linux-x86/clang-r547379/python3/lib/python3.11/
Dplatform.py161 def libc_ver(executable=None, lib='', version='', chunksize=16384): argument
176 if not executable:
187 executable = sys.executable
189 if not executable:
197 executable = os.path.realpath(executable)
198 with open(executable, 'rb') as f:
646 def architecture(executable=sys.executable, bits='', linkage=''): argument
675 if executable:
676 fileout = _syscmd_file(executable, '')
681 executable == sys.executable:
[all …]
/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/
Dplatform.py161 def libc_ver(executable=None, lib='', version='', chunksize=16384): argument
176 if not executable:
187 executable = sys.executable
189 if not executable:
197 executable = os.path.realpath(executable)
198 with open(executable, 'rb') as f:
646 def architecture(executable=sys.executable, bits='', linkage=''): argument
675 if executable:
676 fileout = _syscmd_file(executable, '')
681 executable == sys.executable:
[all …]

12345678910>>...46