Searched refs:target (Results 1 - 25 of 9494) sorted by relevance

1234567891011>>

/external/clang/test/CXX/except/except.spec/
H A Dp9-dynamic.cpp5 void target() throw(int) function
H A Dp9-noexcept.cpp5 void target() noexcept
/external/chromium_org/v8/test/webkit/
H A Dtostring-exception-in-property-access.js27 var target = {"" : "Did not assign to property when setter subscript threw"};
30 target[toStringThrower] = "Assigned to property on object when subscript threw";
34 shouldBe('target[""]', "'Did not assign to property when setter subscript threw'");
36 target[""] = "Did not delete property when subscript threw";
38 delete target[toStringThrower];
42 shouldBe('target[""]', "'Did not delete property when subscript threw'");
44 delete target[""];
46 target.__defineGetter__("", function(){
52 localTest = target[toStringThrower];
/external/llvm/bindings/ocaml/backends/
H A Dbackend_ocaml.c23 // LLVMInitialize ## target ## AsmPrinter();
24 // LLVMInitialize ## target ## AsmParser();
25 // LLVMInitialize ## target ## Disassembler();
27 #define INITIALIZER1(target) \
28 CAMLprim value llvm_initialize_ ## target(value Unit) { \
29 LLVMInitialize ## target ## TargetInfo(); \
30 LLVMInitialize ## target ## Target(); \
31 LLVMInitialize ## target ## TargetMC(); \
35 #define INITIALIZER(target) INITIALIZER1(target)
[all...]
/external/kernel-headers/original/uapi/linux/netfilter_bridge/
H A Debt_redirect.h6 int target; member in struct:ebt_redirect_info
H A Debt_arpreply.h6 int target; member in struct:ebt_arpreply_info
/external/chromium_org/remoting/host/installer/mac/Scripts/
H A Dkeystone_install.sh9 /usr/sbin/installer -pkg "$1/@@HOST_PKG@@.pkg" -target /
/external/valgrind/main/none/tests/s390x/
H A Dex.c4 char target[] ="XXXXXXXXXXXXXXXX"; variable
10 printf("------- Copy 10+1 bytes from buffer to target\n");
13 printf("before: target = |%s|\n", target);
21 : : "a" (target), "a" (buffer): "1", "2", "memory");
23 printf("after: target = |%s|\n", target);
26 printf("------- EX 0,... has no effect (writes out target)\n");
27 printf(" target = |");
31 "lgr 3, %0\n\t" // target
[all...]
H A Dexrl.c4 char target[] ="XXXXXXXXXXXXXXXX"; variable
10 printf("------- Copy 10+1 bytes from buffer to target\n");
13 printf("before: target = |%s|\n", target);
20 : : "a" (target), "a" (buffer) : "1", "2", "memory");
22 printf("after: target = |%s|\n", target);
25 printf("------- EXRL 0,... has no effect (writes out target)\n");
26 printf(" target = |");
29 "lgr 3, %0\n\t" // target
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dserialization_test.h24 bool VerifyHHEA(Table* original, Table* target);
25 bool VerifyGLYF(Table* original, Table* target);
26 bool VerifyHMTX(Table* original, Table* target);
27 bool VerifyLOCA(Table* original, Table* target);
28 bool VerifyMAXP(Table* original, Table* target);
29 bool VerifyNAME(Table* original, Table* target);
30 bool VerifyOS_2(Table* original, Table* target);
/external/sfntly/cpp/src/test/
H A Dserialization_test.h24 bool VerifyHHEA(Table* original, Table* target);
25 bool VerifyGLYF(Table* original, Table* target);
26 bool VerifyHMTX(Table* original, Table* target);
27 bool VerifyLOCA(Table* original, Table* target);
28 bool VerifyMAXP(Table* original, Table* target);
29 bool VerifyNAME(Table* original, Table* target);
30 bool VerifyOS_2(Table* original, Table* target);
/external/chromium_org/native_client_sdk/src/build_tools/
H A Ddsc2gyp.py40 'toolset': 'target',
54 'toolset': 'target',
72 'toolset': 'target',
87 'toolset': 'target',
211 def WriteNaClTargets(output, target, tools):
219 target['CONFIGS'] = configs
220 if target['TYPE'] == 'lib':
221 output.write(NLIB_TARGET % target)
223 output.write(NEXE_TARGET % target)
274 # make a list of all the so target name
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dtarget.h44 enum perf_target_errno perf_target__validate(struct perf_target *target);
45 enum perf_target_errno perf_target__parse_uid(struct perf_target *target);
47 int perf_target__strerror(struct perf_target *target, int errnum, char *buf,
50 static inline bool perf_target__has_task(struct perf_target *target) argument
52 return target->tid || target->pid || target->uid_str;
55 static inline bool perf_target__has_cpu(struct perf_target *target) argument
57 return target->system_wide || target
60 perf_target__none(struct perf_target *target) argument
[all...]
/external/valgrind/main/coregrind/m_gdbserver/
H A Dvalgrind_low.h32 /* defines the characteristics of the "low" valgrind target architecture.
60 /* Returns the target xml description of the set of registers.
65 If shadow_mode, returns a target xml description
68 Returns NULL if there is no target xml file*/
73 extern void x86_init_architecture (struct valgrind_target_ops *target);
74 extern void amd64_init_architecture (struct valgrind_target_ops *target);
75 extern void arm_init_architecture (struct valgrind_target_ops *target);
76 extern void arm64_init_architecture (struct valgrind_target_ops *target);
77 extern void ppc32_init_architecture (struct valgrind_target_ops *target);
78 extern void ppc64_init_architecture (struct valgrind_target_ops *target);
[all...]
/external/chromium_org/cc/output/
H A Dcompositor_frame.cc13 void CompositorFrame::AssignTo(CompositorFrame* target) { argument
14 target->delegated_frame_data = delegated_frame_data.Pass();
15 target->gl_frame_data = gl_frame_data.Pass();
16 target->software_frame_data = software_frame_data.Pass();
17 target->metadata = metadata;
/external/chromium_org/tools/gn/
H A Daction_values.cc8 #include "tools/gn/target.h"
17 const Target* target,
19 if (target->output_type() == Target::COPY_FILES ||
20 target->output_type() == Target::ACTION_FOREACH) {
23 target->settings(), outputs_, target->sources(), result);
16 GetOutputsAsSourceFiles( const Target* target, std::vector<SourceFile>* result) const argument
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
H A Dstandard.h20 #define bis(target,mask) ((target) |= (mask))
21 #define bic(target,mask) ((target) &= ~(mask))
22 #define bit(target,mask) ((target) & (mask))
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dmount.c8 int mount(const char* source, const char* target, const char* filesystemtype, argument
10 return ki_mount(source, target, filesystemtype, mountflags, data);
/external/chromium_org/third_party/polymer/components-chromium/paper-menu-button/
H A Dpaper-menu-button-overlay-extracted.js29 var t = this.target;
30 this.target.cachedSize = t.getBoundingClientRect();
39 this.target.style.left = rect.left + 'px';
41 this.target.style.right = (window.innerWidth - rect.right) + 'px';
43 this.target.style.left = (rect.left - (rect.width - this.target.cachedSize.width) / 2) + 'px';
47 this.target.style.top = rect.top + 'px';
49 this.target.style.top = rect.bottom + 'px';
51 this.target.style.top = rect.top + 'px';
54 // this.target
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DTransition.java34 * transitions) and has a label/target pair. I have abstracted the notion
38 /** What label must be consumed to transition to target */
41 /** The target of this transition */
42 public State target; field in class:Transition
44 public Transition(Label label, State target) { argument
46 this.target = target;
49 public Transition(int label, State target) { argument
51 this.target = target;
[all...]
/external/chromium_org/tools/cr/cr/actions/
H A Dadb.py19 # Tracks the set of killed target names, so we don't keep issuing kill
24 def GetPids(cls, target):
25 """Gets the set of running PIDs that match the specified target."""
27 with target:
37 def Run(cls, target, arguments):
38 """Invoke a target binary on the device."""
39 with target:
49 def Kill(cls, target, _):
50 """Kill all running processes for a target."""
51 target_name = target
[all...]
/external/chromium_org/chrome/browser/resources/quota_internals/
H A Dmessage_dispatcher.js44 var target = null;
47 target = cr.quota.onAvailableSpaceUpdated;
50 target = cr.quota.onGlobalInfoUpdated;
53 target = cr.quota.onPerHostInfoUpdated;
56 target = cr.quota.onPerOriginInfoUpdated;
59 target = cr.quota.onStatisticsUpdated;
65 if (target) {
68 target.dispatchEvent(event);
/external/chromium_org/mojo/public/c/gles2/
H A Dgles2_call_visitor_chromium_texture_mailbox_autogen.h14 (GLenum target, const GLbyte* mailbox),
15 (target, mailbox))
18 (GLuint texture, GLenum target, const GLbyte* mailbox),
19 (texture, target, mailbox))
22 (GLenum target, const GLbyte* mailbox),
23 (target, mailbox))
26 (GLenum target, const GLbyte* mailbox),
27 (target, mailbox))
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DSwitchLabelElement.java38 @Nonnull public final Label target; field in class:SwitchLabelElement
40 public SwitchLabelElement(int key, @Nonnull Label target) { argument
42 this.target = target;
/external/chromium_org/third_party/WebKit/PerformanceTests/Layout/resources/
H A Dcharacter_fallback_test.js5 var target; variable
21 while (target.firstChild)
22 target.removeChild(target.firstChild);
23 target.appendChild(document.createTextNode(charSelection));
24 target.offsetHeight;
32 target = document.querySelector("#target");

Completed in 554 milliseconds

1234567891011>>