/external/v8/test/message/ |
H A D | new-target-for-loop.js | 5 function f() { for (new.target in {}); }
|
H A D | new-target-prefix-op.js | 5 function f() { ++new.target }
|
H A D | new-target-assignment.js | 5 function f() { new.target = 5 }
|
H A D | new-target-postfix-op.js | 5 function f() { new.target++ }
|
/external/v8/test/mjsunit/regress/ |
H A D | regress-crbug-578039-Proxy_construct_prototype_change.js | 6 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 D | target_if_messages.cpp | 14 #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 D | target_messages.cpp | 6 #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 D | target_data_if_messages.cpp | 13 #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 D | target_data_device_messages.cpp | 13 #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 D | target_device_messages.cpp | 13 #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 D | p9-dynamic.cpp | 5 void target() throw(int) function
|
/external/clang/test/CodeGen/ |
H A D | attr-target-ppc.c | 3 long __attribute__((target("power8-vector,no-vsx"))) foo (void) { return 0; } // expected-error {{option '-mpower8-vector' cannot be specified with '-mno-vsx'}}
|
H A D | attr-target-x86.c | 1 // 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 D | attr-target.c | 3 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 D | backend_ocaml.c | 23 * 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 D | tostring-exception-in-property-access.js | 27 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 D | ebt_redirect.h | 6 int target; member in struct:ebt_redirect_info
|
/external/valgrind/none/tests/s390x/ |
H A D | ex.c | 4 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 D | exrl.c | 4 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 D | serialization_test.h | 24 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 D | generate_expected.py | 6 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 D | edge.js | 7 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 D | proxies-prevent-extensions.js | 9 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 D | match_not_bol.pass.cpp | 24 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 D | match_not_eol.pass.cpp | 24 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...] |