Searched refs:target (Results 1 - 25 of 2681) 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/llvm/bindings/ocaml/backends/
H A Dbackend_ocaml.c23 * LLVMInitialize ## target ## AsmPrinter();
24 * LLVMInitialize ## target ## AsmParser();
25 * LLVMInitialize ## target ## Disassembler();
28 #define INITIALIZER1(target) \
29 CAMLprim value llvm_initialize_ ## target(value Unit) { \
30 LLVMInitialize ## target ## TargetInfo(); \
31 LLVMInitialize ## target ## Target(); \
32 LLVMInitialize ## target ## TargetMC(); \
36 #define INITIALIZER(target) INITIALIZER1(target)
[all...]
/external/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/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/valgrind/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...]
H A Dmvst.c14 char target[512]; variable
40 printf("CC:%d\n", mvst(target, buffer));
41 printf("%s\n", target);
42 printf("CC:%d\n",mvst_full(target, bigbuf));
43 printf("%s\n", target);
/external/clang/test/OpenMP/
H A Dtarget_messages.cpp6 #pragma omp target // expected-error {{unexpected OpenMP directive '#pragma omp target'}}
9 #pragma omp target { // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
11 #pragma omp target ( // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
13 #pragma omp target [ // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
15 #pragma omp target ] // expected-warning {{extra tokens at the end of '#pragma omp target' ar
[all...]
H A Dtarget_if_messages.cpp14 #pragma omp target if // expected-error {{expected '(' after 'if'}}
15 #pragma omp target if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
16 #pragma omp target if () // expected-error {{expected expression}}
17 #pragma omp target if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp target if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
19 #pragma omp target if (argc > 0 ? argv[1] : argv[2])
20 #pragma omp target if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target' cannot contain more than one 'if' clause}}
21 #pragma omp target i
[all...]
H A Dteams_default_messages.cpp6 #pragma omp target
9 #pragma omp target
12 #pragma omp target
15 #pragma omp target
18 #pragma omp target
21 #pragma omp target
25 #pragma omp target
29 #pragma omp target
H A Dtarget_ast_print.cpp13 #pragma omp target
15 #pragma omp target if (argc > 0)
17 #pragma omp target if (C)
23 // CHECK-NEXT: #pragma omp target
25 // CHECK-NEXT: #pragma omp target if(argc > 0)
27 // CHECK-NEXT: #pragma omp target if(5)
30 // CHECK-NEXT: #pragma omp target
32 // CHECK-NEXT: #pragma omp target if(argc > 0)
34 // CHECK-NEXT: #pragma omp target if(1)
37 // CHECK-NEXT: #pragma omp target
[all...]
H A Dteams_messages.cpp9 #pragma omp target
12 #pragma omp target
15 #pragma omp target
18 #pragma omp target
21 #pragma omp target
24 #pragma omp target
27 #pragma omp target
31 #pragma omp target
36 #pragma omp target
39 #pragma omp target
[all...]
/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/linux-tools-perf/src/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...]
H A Dtarget.c2 * Helper functions for handling target threads/cpus
9 #include "target.h"
16 enum perf_target_errno perf_target__validate(struct perf_target *target) argument
20 if (target->pid)
21 target->tid = target->pid;
24 if (target->tid && target->cpu_list) {
25 target->cpu_list = NULL;
31 if (target
61 perf_target__parse_uid(struct perf_target *target) argument
107 perf_target__strerror(struct perf_target *target, int errnum, char *buf, size_t buflen) argument
[all...]
/external/androidplot/Examples/DemoApp/
H A Dant.properties44 # The password will be asked during the build when you use the 'release' target.
45 jar.libs.dir=..\\..\\AndroidPlot-Core\\target\\obfuscated
/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/google-breakpad/src/processor/
H A Dstatic_address_map_unittest.cc93 void CompareRetrieveResult(int testcase, int target) { argument
102 found = addr_map[testcase].Retrieve(target, &entry, &address);
104 test_map[testcase].Retrieve(target, entry_cstring, &address_test);
116 int target; local
117 target = INT_MIN;
118 CompareRetrieveResult(testcase, target);
119 target = INT_MAX;
120 CompareRetrieveResult(testcase, target);
124 // Retrive (aka, search) for target address and compare results from
127 // First, assign the search target t
158 int target; local
177 int target; local
196 int target; local
215 int target; local
[all...]
/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/vogar/src/vogar/target/junit/
H A DVogarTest.java17 package vogar.target.junit;
/external/mockito/src/org/mockito/internal/util/reflection/
H A DFieldSetter.java11 private final Object target; field in class:FieldSetter
14 public FieldSetter(Object target, Field field) { argument
15 this.target = target;
23 field.set(target, value);
25 throw new RuntimeException("Access not authorized on field '" + field + "' of object '" + target + "' with value: '" + value + "'", e);
27 throw new RuntimeException("Wrong argument on field '" + field + "' of object '" + target + "' with value: '" + value + "', \n" +
/external/valgrind/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*/
101 extern void x86_init_architecture (struct valgrind_target_ops *target);
102 extern void amd64_init_architecture (struct valgrind_target_ops *target);
103 extern void arm_init_architecture (struct valgrind_target_ops *target);
104 extern void arm64_init_architecture (struct valgrind_target_ops *target);
105 extern void ppc32_init_architecture (struct valgrind_target_ops *target);
106 extern void ppc64_init_architecture (struct valgrind_target_ops *target);
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DTargetInsn.java23 * Instruction which has a single branch target.
26 /** {@code non-null;} the branch target */
27 private CodeAddress target; field in class:TargetInsn
31 * unknown ({@code -1}), and the target is initially
39 * @param target {@code non-null;} the branch target
42 RegisterSpecList registers, CodeAddress target) {
45 if (target == null) {
46 throw new NullPointerException("target == null");
49 this.target
41 TargetInsn(Dop opcode, SourcePosition position, RegisterSpecList registers, CodeAddress target) argument
74 withNewTargetAndReversed(CodeAddress target) argument
[all...]

Completed in 933 milliseconds

1234567891011>>