/external/v8/test/webkit/ |
D | class-syntax-semicolon-expected.txt | 14 PASS class A { ; } did not throw exception. 15 PASS class A { foo() { } ; } did not throw exception. 16 PASS class A { get foo() { } ; } did not throw exception. 17 PASS class A { set foo(x) { } ; } did not throw exception. 18 PASS class A { static foo() { } ; } did not throw exception. 19 PASS class A { static get foo() { } ; } did not throw exception. 20 PASS class A { static set foo(x) { } ; } did not throw exception. 21 PASS class A { ; foo() { } } did not throw exception. 22 PASS class A { ; get foo() { } } did not throw exception. 23 PASS class A { ; set foo(x) { } } did not throw exception. [all …]
|
D | class-syntax-name-expected.txt | 13 PASS class A { constructor() {} } did not throw exception. 14 PASS 'use strict'; class A { constructor() {} } did not throw exception. 21 PASS class A { constructor() {} }; class B extends A {}; did not throw exception. 22 PASS 'use strict'; class A { constructor() {} }; class B extends A {}; did not throw exception. 37 PASS (class {}) did not throw exception. 38 PASS 'use strict'; (class {}) did not throw exception. 39 PASS (class { constructor(){} }) did not throw exception. 40 PASS 'use strict'; (class { constructor(){} }) did not throw exception. 43 PASS (class A {}) did not throw exception. 44 PASS 'use strict'; (class A {}) did not throw exception. [all …]
|
D | class-syntax-extends-expected.txt | 18 PASS x = class extends Base { } did not throw exception. 19 PASS x = class extends Base { constructor() { } } did not throw exception. 28 …nction () {}; baseWithBadPrototype.prototype = 3; new baseWithBadPrototype did not throw exception. 30 PASS baseWithBadPrototype.prototype = "abc" did not throw exception. 32 …otype = null; x = class extends baseWithBadPrototype { constructor() { } } did not throw exception. 39 PASS namespace = {}; namespace.A = class { }; namespace.B = class extends namespace.A { } did not t… 40 PASS namespace = {}; namespace.A = class A { }; namespace.B = class B extends namespace.A { } did n… 41 …tor() { } }; namespace.B = class extends namespace.A { constructor() { } } did not throw exception. 42 …r() { } }; namespace.B = class B extends namespace.A { constructor() { } } did not throw exception. 43 …r() { } }; namespace.B = class extends (namespace.A) { constructor() { } } did not throw exception. [all …]
|
D | class-syntax-expression-expected.txt | 21 PASS x = class {} did not throw exception. 25 PASS x = class { constructor() {} static constructor() { return staticMethodValue; } } did not thro… 30 PASS x = class { constructor() {} prototype() { return instanceMethodValue; } } did not throw exce… 32 PASS x = class { constructor() {} set foo(a) {} } did not throw exception. 33 PASS x = class { constructor() {} set foo({x, y}) {} } did not throw exception. 36 PASS x = class { constructor() {} get foo() {} } did not throw exception.
|
D | class-syntax-declaration-expected.txt | 23 PASS class X {} did not throw exception. 27 PASS class X { constructor() {} static constructor() { return staticMethodValue; } } did not throw … 32 PASS class X { constructor() {} prototype() { return instanceMethodValue; } } did not throw excepti… 34 PASS class X { constructor() {} set foo(a) {} } did not throw exception. 35 PASS class X { constructor() {} set foo({x, y}) {} } did not throw exception. 38 PASS class X { constructor() {} get foo() {} } did not throw exception.
|
D | class-syntax-call-expected.txt | 6 PASS new A did not throw exception. 8 PASS new B did not throw exception. 10 PASS new (class { constructor() {} })() did not throw exception.
|
/external/valgrind/memcheck/tests/solaris/ |
D | door_data.c | 60 int did = -1; in server_main() local 66 if ((did = door_create(server_procedure, (void*)&exit_now, 0)) < 0) { in server_main() 72 if (fattach(did, door_file) < 0) { in server_main() 92 if (did >= 0 && door_revoke(did)) in server_main() 101 int did; in client_main() local 110 if ((did = open(door_file, O_RDWR)) >= 0) in client_main() 111 if (!door_info(did, &info)) in client_main() 114 close(did); in client_main() 137 if (door_call(did, ¶ms)) { in client_main() 139 close(did); in client_main() [all …]
|
D | name_service_door.c | 47 static int test_app_small_request(int did) in test_app_small_request() argument 66 if (door_call(did, ¶ms) != 0) { in test_app_small_request() 74 static int test_app_uninitialized_request(int did) in test_app_uninitialized_request() argument 103 if (door_call(did, ¶ms) != 0) { in test_app_uninitialized_request() 123 static int test_app_proto_icmp(int did) in test_app_proto_icmp() argument 185 if (door_call(did, ¶ms) != 0) { in test_app_proto_icmp() 244 int did = open(DOOR_FILE, O_RDONLY); in main() local 245 if (did < 0) { in main() 253 if (door_info(did, &info) != 0) { in main() 255 close(did); in main() [all …]
|
D | door_kill.c | 60 int did = -1; in main() local 76 if ((did = door_create(server_procedure, NULL, 0)) < 0) { in main() 97 if (did >= 0 && door_revoke(did)) in main()
|
/external/clang/test/FixIt/ |
D | typo.m | 12 …NSstring *str = @"A string"; // expected-error{{unknown type name 'NSstring'; did you mean 'NSStri… 50 herivar = a; // expected-error{{use of undeclared identifier 'herivar'; did you mean 'her_ivar'?}} 51 hisivar = a; // expected-error{{use of undeclared identifier 'hisivar'; did you mean 'his_ivar'?}} 52 …self->herivar = a; // expected-error{{'B' does not have a member named 'herivar'; did you mean 'he… 53 …self->hisivar = a; // expected-error{{'B' does not have a member named 'hisivar'; did you mean 'hi… 54 …self.hisprop = 0; // expected-error{{property 'hisprop' not found on object of type 'B *'; did you… 55 …self.herprop = 0; // expected-error{{property 'herprop' not found on object of type 'B *'; did you… 56 …self.s_prop = 0; // expected-error{{property 's_prop' not found on object of type 'B *'; did you m… 64 [NSstring method:17]; // expected-error{{unknown receiver 'NSstring'; did you mean 'NSString'?}} 81 …a.valu = 17; // expected-error{{property 'valu' not found on object of type 'Collide *'; did you m… [all …]
|
/external/clang/test/SemaCXX/ |
D | warn-memsize-comparison.cpp | 21 expected-note {{did you mean to compare}} \ in f() 27 expected-note {{did you mean to compare}} \ in f() 33 expected-note {{did you mean to compare}} \ in f() 39 expected-note {{did you mean to compare}} \ in f() 45 expected-note {{did you mean to compare}} \ in f() 51 expected-note {{did you mean to compare}} \ in f() 57 expected-note {{did you mean to compare}} \ in f() 63 expected-note {{did you mean to compare}} \ in f() 69 expected-note {{did you mean to compare}} \ in f() 75 expected-note {{did you mean to compare}} \ in f() [all …]
|
/external/clang/test/SemaObjC/ |
D | method-bad-param.m | 10 …param; // expected-error {{interface type 'foo' cannot be passed by value; did you forget * in 'fo… 11 …dd; // expected-error {{interface type 'foo' cannot be returned by value; did you forget * in 'fo… 15 …param // expected-error {{interface type 'foo' cannot be passed by value; did you forget * in 'fo… 18 - (foo)cccccc:(long)ddddd // expected-error {{interface type 'foo' cannot be returned by value; did… 23 void somefunc(foo x) {} // expected-error {{interface type 'foo' cannot be passed by value; did you… 24 foo somefunc2() {} // expected-error {{interface type 'foo' cannot be returned by value; did you fo…
|
D | undef-arg-super-method-call.m | 17 …[super addViewLayerInfo:view]; // expected-error {{use of undeclared identifier 'view'; did you me… 21 …[super addInstViewLayerInfo:view]; // expected-error {{use of undeclared identifier 'view'; did yo…
|
D | invalid-objc-decls-1.m | 30 Super foo( // expected-error{{interface type 'Super' cannot be returned by value; did you forget * … 31 …Super parm1) { // expected-error{{interface type 'Super' cannot be passed by value; did you forget…
|
D | property-user-setter.m | 127 …self.P = 0; // expected-warning {{property 'P' not found on object of type 'rdar11363363 *'; did y… 128 …self.q = 0; // expected-warning {{property 'q' not found on object of type 'rdar11363363 *'; did y… 136 …ected-warning {{property 'R' not found on object of type 'rdar11363363 *'; did you mean to access …
|
D | blocks.m | 48 …void *P = ^(itf x) {}; // expected-error {{interface type 'itf' cannot be passed by value; did yo… 49 …P = ^itf(int x) {}; // expected-error {{interface type 'itf' cannot be returned by value; did … 50 …P = ^itf() {}; // expected-error {{interface type 'itf' cannot be returned by value; did … 51 …P = ^itf{}; // expected-error {{interface type 'itf' cannot be returned by value; did …
|
/external/v8/test/webkit/fast/js/kde/ |
D | lval-exceptions-expected.txt | 31 PASS function () { b = a.x; } did not throw an exception 32 PASS function () { b = a['x']; } did not throw an exception 33 PASS function () { a['x'] += 'baz'; } did not throw an exception 35 PASS function () { b = a.y; } did not throw an exception 36 PASS function () { a.y += 'glarch'; } did not throw an exception
|
/external/valgrind/ |
D | AUTHORS | 4 the 3.X versions of Helgrind, SGCheck, DHAT, and did lots of other 7 Nicholas Nethercote did the core/tool generalisation, wrote 10 Tom Hughes did a vast number of bug fixes, helped out with support for 21 Paul Mackerras did a lot of the initial per-architecture factoring 23 He also did UCode-based dynamic translation support for PowerPC, and 41 Kirill Batuzov and Dmitry Zhurikhin did the NEON instruction set 42 support for ARM. Donna Robinson did the v6 media instruction support.
|
/external/llvm/test/YAMLParser/ |
D | spec-02-17.test | 3 unicode: "Sosa did fine.\u263A" 11 # CHECK: !!str "Sosa did fine.\u263A"
|
/external/regex-re2/re2/testing/ |
D | dfa_test.cc | 138 vector<bool> did(1<<n); in DeBruijnString() local 140 did[i] = false; in DeBruijnString() 150 if (!did[bits|1]) { in DeBruijnString() 156 CHECK(!did[bits]); in DeBruijnString() 157 did[bits] = true; in DeBruijnString()
|
/external/valgrind/none/tests/s390x/ |
D | op_exception.stderr.exp | 6 did not recognise. There are two possible reasons for this. 19 did not recognise. There are two possible reasons for this. 32 did not recognise. There are two possible reasons for this. 45 did not recognise. There are two possible reasons for this.
|
/external/llvm/test/CodeGen/X86/ |
D | coalescer-subreg.ll | 2 ; This used to crash when coalescing a regclass like GR16 which did not support 3 ; the sub_8bit_hi subregister with a class like GR16_ABCD that did.
|
/external/google-breakpad/src/client/mac/tests/ |
D | BreakpadFramework_Test.mm | 133 STAssertNULL(b, @"BreakpadCreate did not fail when missing a required" 140 STAssertNULL(b, @"BreakpadCreate did not fail when missing a required" 147 STAssertNULL(b, @"BreakpadCreate did not fail when missing a required" 167 // Test that it did not add the key/value directly, e.g. without 178 @"Calling BreakpadAddUploadParameter did not prepend "
|
/external/libnfc-nxp/src/ |
D | phHciNfc_NfcIPMgmt.h | 164 uint8_t did; member 424 uint8_t did
|
/external/llvm/test/Transforms/LoopVectorize/X86/ |
D | already-vectorized.ll | 19 ; We need to make sure we did vectorize the loop 31 ; If it did, we have two loops:
|