Searched refs:executable (Results 1 - 25 of 272) sorted by relevance

1234567891011

/external/chromium_org/build/mac/
H A Dverify_no_objc.sh8 # executable file built by the Xcode target that runs the script. If such a
14 # crash when operating in an executable that has not loaded at its default
15 # address (that is, when it's a position-independent executable with the
16 # MH_PIE bit set in its mach_header) and the executable has an
21 # don't need it anyway saves about 4kB in the linked executable, although most
29 executable="${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}"
31 if xcrun otool -arch i386 -o "${executable}" | grep -q '^Contents.*section$'; \
33 echo "${0}: ${executable} has an __OBJC,__image_info section" 2>&1
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DShaderExecutable9.cpp8 // executable implementation details.
17 ShaderExecutable9::ShaderExecutable9(const void *function, size_t length, IDirect3DPixelShader9 *executable) argument
20 mPixelExecutable = executable;
24 ShaderExecutable9::ShaderExecutable9(const void *function, size_t length, IDirect3DVertexShader9 *executable) argument
27 mVertexExecutable = executable;
37 ShaderExecutable9 *ShaderExecutable9::makeShaderExecutable9(ShaderExecutable *executable) argument
39 ASSERT(HAS_DYNAMIC_TYPE(ShaderExecutable9*, executable));
40 return static_cast<ShaderExecutable9*>(executable);
H A DShaderExecutable9.h8 // executable implementation details.
21 ShaderExecutable9(const void *function, size_t length, IDirect3DPixelShader9 *executable);
22 ShaderExecutable9(const void *function, size_t length, IDirect3DVertexShader9 *executable);
25 static ShaderExecutable9 *makeShaderExecutable9(ShaderExecutable *executable);
/external/chromium_org/base/files/
H A Dfile_util_android.cc12 bool GetShmemTempDir(bool executable, base::FilePath* path) { argument
/external/chromium_org/content/common/
H A Dchild_process_sandbox_support_impl_shm_linux.cc13 int MakeSharedMemorySegmentViaIPC(size_t length, bool executable) { argument
17 request.WriteBool(executable);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DShaderExecutable11.cpp8 // executable implementation details.
16 ShaderExecutable11::ShaderExecutable11(const void *function, size_t length, ID3D11PixelShader *executable) argument
19 mPixelExecutable = executable;
25 ShaderExecutable11::ShaderExecutable11(const void *function, size_t length, ID3D11VertexShader *executable, ID3D11GeometryShader *streamOut) argument
28 mVertexExecutable = executable;
34 ShaderExecutable11::ShaderExecutable11(const void *function, size_t length, ID3D11GeometryShader *executable) argument
37 mGeometryExecutable = executable;
51 ShaderExecutable11 *ShaderExecutable11::makeShaderExecutable11(ShaderExecutable *executable) argument
53 ASSERT(HAS_DYNAMIC_TYPE(ShaderExecutable11*, executable));
54 return static_cast<ShaderExecutable11*>(executable);
[all...]
H A DShaderExecutable11.h8 // executable implementation details.
23 ShaderExecutable11(const void *function, size_t length, ID3D11PixelShader *executable);
24 ShaderExecutable11(const void *function, size_t length, ID3D11VertexShader *executable, ID3D11GeometryShader *streamOut);
25 ShaderExecutable11(const void *function, size_t length, ID3D11GeometryShader *executable);
29 static ShaderExecutable11 *makeShaderExecutable11(ShaderExecutable *executable);
/external/chromium_org/third_party/libvpx/
H A Dobj_int_extract.py15 parser.add_option('-e', '--executable', help='path to obj_int_extract.')
22 if (not options.executable or not options.format or not options.binary or
28 subprocess.check_call([options.executable, options.format, options.binary],
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseSvnDiffFooter.pl47 diffName => "simple: add svn:executable",
51 Added: svn:executable
113 diffName => "simple: delete svn:executable",
117 Deleted: svn:executable
130 diffName => "simple: delete svn:executable using SVN 1.4 syntax",
134 Name: svn:executable
150 diffName => "add svn:executable, followed by empty line and start of next diff",
154 Added: svn:executable
169 diffName => "add svn:executable, followed by empty line and start of next property diff",
173 Added: svn:executable
[all...]
H A DparseSvnProperty.pl47 diffName => "simple: add svn:executable",
49 Added: svn:executable
54 name => "svn:executable",
63 diffName => "simple: delete svn:executable",
65 Deleted: svn:executable
70 name => "svn:executable",
148 diffName => "simple: delete svn:executable using SVN 1.4 syntax",
150 Name: svn:executable
155 name => "svn:executable",
164 diffName => "simple: add svn:executable usin
[all...]
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp114 ModuleSP executable; local
119 executable = GetTargetExecutable();
122 if (executable.get() && load_offset != LLDB_INVALID_ADDRESS)
125 module_list.Append(executable);
126 UpdateLoadedSections(executable, load_offset);
135 ModuleSP executable; local
140 executable = GetTargetExecutable();
143 if (executable.get() && load_offset != LLDB_INVALID_ADDRESS)
146 module_list.Append(executable);
147 UpdateLoadedSections(executable, load_offse
157 ModuleSP executable = target.GetExecutableModule(); local
[all...]
/external/chromium_org/chrome/tools/build/win/
H A Dsyzygy_reorder.py15 # The default relink executable to use to reorder binaries.
38 def _ReorderBinary(relink_exe, executable, symbol, destination_dir):
39 """Reorders the executable found in input_dir, and writes the resultant
40 reordered executable and symbol files to destination_dir.
42 If a file named <executable>-order.json exists, imposes that order on the
47 '--input-image=%s' % executable,
50 os.path.join(destination_dir, os.path.basename(executable))),
54 # Check whether there's an order file available for the executable.
55 order_file = '%s-order.json' % executable
59 os.path.basename(executable),
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A DSConscript6 from sys import executable as python_cmd
/external/mesa3d/src/gallium/state_trackers/vega/
H A DSConscript6 from sys import executable as python_cmd
/external/chromium_org/content/public/common/
H A Dchild_process_sandbox_support_linux.h17 // executable flag indicates that the caller intends to use mprotect
24 bool executable);
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
H A Drun_tests.py14 args = [sys.executable, testname] + args
/external/chromium_org/tools/gyp/test/make_global_settings/full-toolchain/
H A Dgyptest-make_global_settings.py36 # my_readelf.py, and the python executable.
38 '-Dpython=%s' % sys.executable)
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dpath_unittest.py16 self.assertTrue(path.IsExecutable(sys.executable))
/external/chromium_org/webkit/tools/layout_tests/
H A Drun_webkit_tests.py17 cmd = [sys.executable, script] + sys.argv[1:]
/external/linux-tools-perf/perf-3.12.0/tools/perf/config/
H A Dutilities.mak139 # Usage: absolute-executable-path-or-empty = $(call lookup,path)
147 # is-executable
149 # Usage: bool-value = $(call is-executable,path)
154 is-executable = $(call _is-executable-helper,$(shell-sq))
155 _is-executable-helper = $(shell sh -c $(_is-executable-sh))
156 _is-executable-sh = $(call shell-sq,test -f $(1) -a -x $(1) && echo y)
158 # get-executable
160 # Usage: absolute-executable
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Exec.java39 String executable = System.getProperty("java.home");
40 if (!executable.endsWith(File.separator)) {
41 executable += File.separator;
43 executable += "bin" + File.separator + "java";
55 return run(executable, args, envp, displayOutput);
168 // construct the name of executable file
169 String executable = System.getProperty("java.home");
170 if (!executable.endsWith(File.separator)) {
171 executable += File.separator;
173 executable
[all...]
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dbuildbot_run.py47 Run([sys.executable, 'test_all.py'], env=env, cwd=SDK_SRC_DIR)
65 args = [sys.executable, 'build_sdk.py']
89 cmd.extend([sys.executable, 'test_sdk.py'])
/external/chromium_org/ppapi/generators/
H A Didl_tests.py14 args = [sys.executable, testname] + args
/external/chromium_org/third_party/mesa/
H A Dredirectoutput.py25 ret = subprocess.Popen([sys.executable] + sys.argv[2:], stdout=f).wait()
/external/chromium_org/testing/
H A Dtest_env.py56 """Returns the fixed command line to call the right python executable."""
59 out[0] = sys.executable
61 out.insert(0, sys.executable)
66 """Runs an executable with:
70 - Reuses sys.executable automatically.

Completed in 2732 milliseconds

1234567891011