Home
last modified time | relevance | path

Searched refs:did (Results 1 – 25 of 500) sorted by relevance

12345678910>>...20

/external/v8/test/webkit/
Dclass-syntax-semicolon-expected.txt14 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 …]
Dclass-syntax-name-expected.txt13 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 …]
Dclass-syntax-extends-expected.txt18 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 …]
Dclass-syntax-expression-expected.txt21 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.
Dclass-syntax-declaration-expected.txt23 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.
Dclass-syntax-call-expected.txt6 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/
Ddoor_data.c60 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, &params)) { in client_main()
139 close(did); in client_main()
[all …]
Dname_service_door.c47 static int test_app_small_request(int did) in test_app_small_request() argument
66 if (door_call(did, &params) != 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, &params) != 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, &params) != 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 …]
Ddoor_kill.c60 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/
Dtypo.m12 …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/
Dwarn-memsize-comparison.cpp21 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/
Dmethod-bad-param.m10 …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…
Dundef-arg-super-method-call.m17 …[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…
Dinvalid-objc-decls-1.m30 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…
Dproperty-user-setter.m127 …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 …
Dblocks.m48 …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/
Dlval-exceptions-expected.txt31 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/
DAUTHORS4 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/
Dspec-02-17.test3 unicode: "Sosa did fine.\u263A"
11 # CHECK: !!str "Sosa did fine.\u263A"
/external/regex-re2/re2/testing/
Ddfa_test.cc138 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/
Dop_exception.stderr.exp6 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/
Dcoalescer-subreg.ll2 ; 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/
DBreakpadFramework_Test.mm133 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/
DphHciNfc_NfcIPMgmt.h164 uint8_t did; member
424 uint8_t did
/external/llvm/test/Transforms/LoopVectorize/X86/
Dalready-vectorized.ll19 ; We need to make sure we did vectorize the loop
31 ; If it did, we have two loops:

12345678910>>...20