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

1234567891011>>

/external/v8/test/message/
H A Dnew-target-for-loop.js5 function f() { for (new.target in {}); }
H A Dnew-target-prefix-op.js5 function f() { ++new.target }
H A Dnew-target-assignment.js5 function f() { new.target = 5 }
H A Dnew-target-postfix-op.js5 function f() { new.target++ }
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-578039-Proxy_construct_prototype_change.js6 function target() {}; function
8 var proxy = new Proxy(target, {
10 // Reset the initial map of the target.
11 target.prototype = 123;
/external/clang/test/OpenMP/
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 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_data_if_messages.cpp13 #pragma omp target data if // expected-error {{expected '(' after 'if'}}
14 #pragma omp target data if ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
15 #pragma omp target data if () // expected-error {{expected expression}}
16 #pragma omp target data if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
17 #pragma omp target data if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target data' are ignored}}
18 #pragma omp target data if (argc > 0 ? argv[1] : argv[2])
19 #pragma omp target data if (argc + argc)
20 #pragma omp target data if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target dat
[all...]
H A Dtarget_data_device_messages.cpp13 #pragma omp target data device // expected-error {{expected '(' after 'device'}}
14 #pragma omp target data device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
15 #pragma omp target data device () // expected-error {{expected expression}}
16 #pragma omp target data device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
17 #pragma omp target data device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target data' are ignored}}
18 #pragma omp target data device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
19 #pragma omp target data device (argc + argc)
20 #pragma omp target data device (argc), device (argc+1) // expected-error {{directive '#pragma omp target dat
[all...]
H A Dtarget_device_messages.cpp13 #pragma omp target device // expected-error {{expected '(' after 'device'}}
14 #pragma omp target device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
15 #pragma omp target device () // expected-error {{expected expression}}
16 #pragma omp target device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
17 #pragma omp target device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}}
18 #pragma omp target device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}}
19 #pragma omp target device (argc + argc)
20 #pragma omp target device (argc), device (argc+1) // expected-error {{directive '#pragma omp target' canno
[all...]
/external/clang/test/CXX/except/except.spec/
H A Dp9-dynamic.cpp5 void target() throw(int) function
/external/clang/test/CodeGen/
H A Dattr-target-ppc.c3 long __attribute__((target("power8-vector,no-vsx"))) foo (void) { return 0; } // expected-error {{option '-mpower8-vector' cannot be specified with '-mno-vsx'}}
H A Dattr-target-x86.c1 // RUN: %clang_cc1 -triple x86_64-linux-gnu -target-cpu x86-64 -emit-llvm %s -o - | FileCheck %s
5 int __attribute__((target("avx,sse4.2,arch=ivybridge"))) foo(int a) { return 4; }
7 int __attribute__((target("tune=sandybridge"))) walrus(int a) { return 4; }
8 int __attribute__((target("fpmath=387"))) koala(int a) { return 4; }
10 int __attribute__((target("no-sse2"))) echidna(int a) { return 4; }
12 int __attribute__((target("sse4"))) panda(int a) { return 4; }
16 int __attribute__((target("avx, sse4.2, arch= ivybridge"))) qux(int a) { return 4; }
17 int __attribute__((target("no-aes, arch=ivybridge"))) qax(int a) { return 4; }
19 int __attribute__((target("no-mmx"))) qq(int a) { return 40; }
34 // CHECK: #0 = {{.*}}"target
[all...]
/external/clang/test/Sema/
H A Dattr-target.c3 int __attribute__((target("avx,sse4.2,arch=ivybridge"))) foo() { return 4; }
4 int __attribute__((target())) bar() { return 4; } //expected-error {{'target' attribute takes one argument}}
5 int __attribute__((target("tune=sandybridge"))) baz() { return 4; } //expected-warning {{Ignoring unsupported 'tune=' in the target attribute string}}
6 int __attribute__((target("fpmath=387"))) walrus() { return 4; } //expected-warning {{Ignoring unsupported 'fpmath=' in the target attribute string}}
/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
/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...]
/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/jsoncpp/test/
H A Dgenerate_expected.py6 target = os.path.splitext(path)[0] + '.expected' variable
7 if os.path.exists( target ):
8 print('skipping:', target)
10 print('creating:', target)
11 file(target,'wt').write(text)
/external/v8/tools/turbolizer/
H A Dedge.js7 function isEdgeInitiallyVisible(target, index, source, type) {
8 return type == "control" && (target.cfg || source.cfg);
11 var Edge = function(target, index, source, type) {
12 this.target = target;
17 this.visible = isEdgeInitiallyVisible(target, index, source, type);
21 return this.source.id + "," + this.index + "," + this.target.id;
25 return this.visible && this.source.visible && this.target.visible;
33 var target = this.target;
[all...]
/external/v8/test/mjsunit/es6/
H A Dproxies-prevent-extensions.js9 var target = {};
11 var proxy = new Proxy(target, handler);
13 assertTrue(Reflect.isExtensible(target));
16 assertFalse(Reflect.isExtensible(target));
24 var target = {};
26 var proxy = new Proxy(target, handler);
28 assertTrue(Reflect.isExtensible(target));
31 assertFalse(Reflect.isExtensible(target));
39 var target = {};
41 var proxy = new Proxy(target, handle
[all...]
/external/libcxx/test/std/re/re.const/re.matchflag/
H A Dmatch_not_bol.pass.cpp24 std::string target = "foo"; local
26 assert( std::regex_match(target, re));
27 assert(!std::regex_match(target, re, std::regex_constants::match_not_bol));
31 std::string target = "foo"; local
33 assert( std::regex_match(target, re));
34 assert( std::regex_match(target, re, std::regex_constants::match_not_bol));
38 std::string target = "fooby"; local
40 assert( std::regex_search(target, re));
41 assert(!std::regex_search(target, re, std::regex_constants::match_not_bol));
45 std::string target local
[all...]
H A Dmatch_not_eol.pass.cpp24 std::string target = "foo"; local
26 assert( std::regex_match(target, re));
27 assert(!std::regex_match(target, re, std::regex_constants::match_not_eol));
31 std::string target = "foo"; local
33 assert( std::regex_match(target, re));
34 assert( std::regex_match(target, re, std::regex_constants::match_not_eol));
38 std::string target = "refoo"; local
40 assert( std::regex_search(target, re));
41 assert(!std::regex_search(target, re, std::regex_constants::match_not_eol));
45 std::string target local
[all...]

Completed in 434 milliseconds

1234567891011>>