Home
last modified time | relevance | path

Searched full:then (Results 1 – 25 of 10007) sorted by relevance

12345678910>>...401

/third_party/typescript/tests/baselines/reference/
DpromisePermutations.js3then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => Promise<U>, progress?: (progre…
4then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => U, progress?: (progress: any) …
5then<U>(success?: (value: T) => U, error?: (error: any) => Promise<U>, progress?: (progress: any) …
6then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):…
11then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (prog…
12then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any)…
13then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any)…
14then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):…
50 var r1a = r1.then(testFunction, testFunction, testFunction);
51 var r1b = r1.then(testFunction, testFunction, testFunction).then(testFunction, testFunction, testFu…
[all …]
DpromisePermutations3.js5then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => Promise<U>, progress?: (progre…
6then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => U, progress?: (progress: any) …
7then<U>(success?: (value: T) => U, error?: (error: any) => Promise<U>, progress?: (progress: any) …
8then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):…
13then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):…
49 var r1a = r1.then(testFunction, testFunction, testFunction);
50 var r1b = r1.then(testFunction, testFunction, testFunction).then(testFunction, testFunction, testFu…
51 var r1c = r1.then(testFunctionP, testFunctionP, testFunctionP);
53 var s1a = s1.then(testFunction, testFunction, testFunction);
54 var s1b = s1.then(testFunctionP, testFunctionP, testFunctionP);
[all …]
DpromisePermutations2.js5then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):…
10then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (prog…
11then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any)…
12then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any)…
13then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):…
49 var r1a = r1.then(testFunction, testFunction, testFunction);
50 var r1b = r1.then(testFunction, testFunction, testFunction).then(testFunction, testFunction, testFu…
51 var r1c = r1.then(testFunctionP, testFunctionP, testFunctionP);
53 var s1a = s1.then(testFunction, testFunction, testFunction);
54 var s1b = s1.then(testFunctionP, testFunctionP, testFunctionP);
[all …]
DchainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.types8 then<S extends T>(cb: (x: T) => S): Chain<S> {
9 >then : <S extends T>(cb: (x: T) => S) => Chain<S>
20 (new Chain(t)).then(tt => s).then(ss => t);
21 >(new Chain(t)).then(tt => s).then(ss => t) : Chain<S>
22 >(new Chain(t)).then(tt => s).then : <S extends S>(cb: (x: S) => S) => Chain<S>
23 >(new Chain(t)).then(tt => s) : Chain<S>
24 >(new Chain(t)).then : <S extends T>(cb: (x: T) => S) => Chain<S>
29 >then : <S extends T>(cb: (x: T) => S) => Chain<S>
33 >then : <S extends S>(cb: (x: S) => S) => Chain<S>
39 (new Chain(s)).then(ss => t);
[all …]
DpromiseTypeStrictNull.js87 const p01 = p.then();
100 const p20 = p.then(undefined);
101 const p21 = p.then(null);
102 const p22 = p.then(() => 1);
103 const p23 = p.then(() => x);
104 const p24 = p.then(() => undefined);
105 const p25 = p.then(() => null);
106 const p26 = p.then(() => {});
107 const p27 = p.then(() => {throw 1});
108 const p28 = p.then(() => Promise.resolve(1));
[all …]
DpromiseType.js87 const p01 = p.then();
100 const p20 = p.then(undefined);
101 const p21 = p.then(null);
102 const p22 = p.then(() => 1);
103 const p23 = p.then(() => x);
104 const p24 = p.then(() => undefined);
105 const p25 = p.then(() => null);
106 const p26 = p.then(() => {});
107 const p27 = p.then(() => {throw 1});
108 const p28 = p.then(() => Promise.resolve(1));
[all …]
DchainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.symbols10 then<S extends T>(cb: (x: T) => S): Chain<S> {
11 >then : Symbol(Chain.then, Decl(chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.ts, 1…
30 (new Chain(t)).then(tt => s).then(ss => t);
31 >(new Chain(t)).then(tt => s).then : Symbol(Chain.then, Decl(chainedCallsWithTypeParameterConstrain…
32 >(new Chain(t)).then : Symbol(Chain.then, Decl(chainedCallsWithTypeParameterConstrainedToOtherTypeP…
35 >then : Symbol(Chain.then, Decl(chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.ts, 1…
38 >then : Symbol(Chain.then, Decl(chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.ts, 1…
43 (new Chain(s)).then(ss => t);
44 >(new Chain(s)).then : Symbol(Chain.then, Decl(chainedCallsWithTypeParameterConstrainedToOtherTypeP…
47 >then : Symbol(Chain.then, Decl(chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.ts, 1…
[all …]
DpromiseType.symbols168 const p01 = p.then();
170 >p.then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --))
172 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --))
243 const p20 = p.then(undefined);
245 >p.then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --))
247 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --))
250 const p21 = p.then(null);
252 >p.then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --))
254 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --))
256 const p22 = p.then(() => 1);
[all …]
DpromiseTypeStrictNull.symbols168 const p01 = p.then();
170 >p.then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --))
172 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --))
243 const p20 = p.then(undefined);
245 >p.then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --))
247 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --))
250 const p21 = p.then(null);
252 >p.then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --))
254 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --))
256 const p22 = p.then(() => 1);
[all …]
DchainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.js4 then<S extends T>(cb: (x: T) => S): Chain<S> { field in Chain
8 (new Chain(t)).then(tt => s).then(ss => t);
11 (new Chain(s)).then(ss => t);
14 (new Chain(t)).then(tt => t).then(tt => t).then(tt => t);
15 (new Chain(s)).then(ss => s).then(ss => s).then(ss => s);
27 then<S extends T>(cb: (x: T) => S): Chain2<S> { field in Chain2
33 (new Chain2(i)).then(ii => t).then(tt => s).value.x = "";
37 (new Chain2(i)).then(ii => t).then(tt => t).then(tt => t).then(tt => t).value.x = "";
38 (new Chain2(i)).then(ii => s).then(ss => s).then(ss => s).then(ss => s).value.x = "";
49 Chain.prototype.then = function (cb) { method in Chain
[all …]
DpromisePermutations3.symbols8then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => Promise<U>, progress?: (progre…
9 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --), Decl(promisePermutations3.ts, 2, 22), Decl…
25then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => U, progress?: (progress: any) …
26 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --), Decl(promisePermutations3.ts, 2, 22), Decl…
41then<U>(success?: (value: T) => U, error?: (error: any) => Promise<U>, progress?: (progress: any) …
42 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --), Decl(promisePermutations3.ts, 2, 22), Decl…
57then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):…
58 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --), Decl(promisePermutations3.ts, 2, 22), Decl…
88then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):…
89 >then : Symbol(IPromise.then, Decl(promisePermutations3.ts, 10, 23))
[all …]
DpromisePermutations2.symbols8then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):…
9 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --), Decl(promisePermutations2.ts, 2, 22))
39then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (prog…
40 >then : Symbol(IPromise.then, Decl(promisePermutations2.ts, 7, 23), Decl(promisePermutations2.ts, 8…
56then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any)…
57 >then : Symbol(IPromise.then, Decl(promisePermutations2.ts, 7, 23), Decl(promisePermutations2.ts, 8…
72then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any)…
73 >then : Symbol(IPromise.then, Decl(promisePermutations2.ts, 7, 23), Decl(promisePermutations2.ts, 8…
88then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):…
89 >then : Symbol(IPromise.then, Decl(promisePermutations2.ts, 7, 23), Decl(promisePermutations2.ts, 8…
[all …]
DchainedCallsWithTypeParameterConstrainedToOtherTypeParameter.types8 then<S extends T>(cb: (x: T) => S): Chain<S> {
9 >then : <S extends T>(cb: (x: T) => S) => Chain<S>
40 (new Chain(new A)).then(a => new B).then(b => new C).then(c => new B).then(b => new A);
41 >(new Chain(new A)).then(a => new B).then(b => new C).then(c => new B).then(b => new A) : Chain<C>
42 >(new Chain(new A)).then(a => new B).then(b => new C).then(c => new B).then : <S extends C>(cb: (x:…
43 >(new Chain(new A)).then(a => new B).then(b => new C).then(c => new B) : Chain<C>
44 >(new Chain(new A)).then(a => new B).then(b => new C).then : <S extends C>(cb: (x: C) => S) => Chai…
45 >(new Chain(new A)).then(a => new B).then(b => new C) : Chain<C>
46 >(new Chain(new A)).then(a => new B).then : <S extends B>(cb: (x: B) => S) => Chain<S>
47 >(new Chain(new A)).then(a => new B) : Chain<B>
[all …]
DpromisePermutations.symbols6then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => Promise<U>, progress?: (progre…
7 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --), Decl(promisePermutations.ts, 0, 22), Decl(…
23then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => U, progress?: (progress: any) …
24 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --), Decl(promisePermutations.ts, 0, 22), Decl(…
39then<U>(success?: (value: T) => U, error?: (error: any) => Promise<U>, progress?: (progress: any) …
40 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --), Decl(promisePermutations.ts, 0, 22), Decl(…
55then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):…
56 >then : Symbol(Promise.then, Decl(lib.es5.d.ts, --, --), Decl(promisePermutations.ts, 0, 22), Decl(…
86then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (prog…
87 >then : Symbol(IPromise.then, Decl(promisePermutations.ts, 8, 23), Decl(promisePermutations.ts, 9, …
[all …]
DpromiseType.types189 const p01 = p.then();
191 >p.then() : Promise<boolean>
192 >p.then : <TResult1 = boolean, TResult2 = never>(onfulfilled?: (value: boolean) => TResult1 | Promi…
194 >then : <TResult1 = boolean, TResult2 = never>(onfulfilled?: (value: boolean) => TResult1 | Promise…
291 const p20 = p.then(undefined);
293 >p.then(undefined) : Promise<boolean>
294 >p.then : <TResult1 = boolean, TResult2 = never>(onfulfilled?: (value: boolean) => TResult1 | Promi…
296 >then : <TResult1 = boolean, TResult2 = never>(onfulfilled?: (value: boolean) => TResult1 | Promise…
299 const p21 = p.then(null);
301 >p.then(null) : Promise<boolean>
[all …]
DchainedCallsWithTypeParameterConstrainedToOtherTypeParameter.symbols11 then<S extends T>(cb: (x: T) => S): Chain<S> {
12 >then : Symbol(Chain.then, Decl(chainedCallsWithTypeParameterConstrainedToOtherTypeParameter.ts, 1,…
48 (new Chain(new A)).then(a => new B).then(b => new C).then(c => new B).then(b => new A);
49 >(new Chain(new A)).then(a => new B).then(b => new C).then(c => new B).then : Symbol(Chain.then, De…
50 >(new Chain(new A)).then(a => new B).then(b => new C).then : Symbol(Chain.then, Decl(chainedCallsWi…
51 >(new Chain(new A)).then(a => new B).then : Symbol(Chain.then, Decl(chainedCallsWithTypeParameterCo…
52 >(new Chain(new A)).then : Symbol(Chain.then, Decl(chainedCallsWithTypeParameterConstrainedToOtherT…
55 >then : Symbol(Chain.then, Decl(chainedCallsWithTypeParameterConstrainedToOtherTypeParameter.ts, 1,…
58 >then : Symbol(Chain.then, Decl(chainedCallsWithTypeParameterConstrainedToOtherTypeParameter.ts, 1,…
61 >then : Symbol(Chain.then, Decl(chainedCallsWithTypeParameterConstrainedToOtherTypeParameter.ts, 1,…
[all …]
/third_party/typescript/tests/cases/compiler/
DpromiseType.ts87 const p01 = p.then();
100 const p20 = p.then(undefined);
101 const p21 = p.then(null);
102 const p22 = p.then(() => 1);
103 const p23 = p.then(() => x);
104 const p24 = p.then(() => undefined);
105 const p25 = p.then(() => null);
106 const p26 = p.then(() => {});
107 const p27 = p.then(() => {throw 1});
108 const p28 = p.then(() => Promise.resolve(1));
[all …]
DpromiseTypeStrictNull.ts88 const p01 = p.then();
101 const p20 = p.then(undefined);
102 const p21 = p.then(null);
103 const p22 = p.then(() => 1);
104 const p23 = p.then(() => x);
105 const p24 = p.then(() => undefined);
106 const p25 = p.then(() => null);
107 const p26 = p.then(() => {});
108 const p27 = p.then(() => {throw 1});
109 const p28 = p.then(() => Promise.resolve(1));
[all …]
DpromisePermutations2.ts4then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
9then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (prog… method
10then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any)… method
11then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any)… method
12then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
48 var r1a = r1.then(testFunction, testFunction, testFunction);
49 var r1b = r1.then(testFunction, testFunction, testFunction).then(testFunction, testFunction, testFu…
50 var r1c = r1.then(testFunctionP, testFunctionP, testFunctionP);
52 var s1a = s1.then(testFunction, testFunction, testFunction);
53 var s1b = s1.then(testFunctionP, testFunctionP, testFunctionP);
[all …]
DpromisePermutations3.ts4then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => Promise<U>, progress?: (progre… method
5then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => U, progress?: (progress: any) … method
6then<U>(success?: (value: T) => U, error?: (error: any) => Promise<U>, progress?: (progress: any) … method
7then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
12then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
48 var r1a = r1.then(testFunction, testFunction, testFunction);
49 var r1b = r1.then(testFunction, testFunction, testFunction).then(testFunction, testFunction, testFu…
50 var r1c = r1.then(testFunctionP, testFunctionP, testFunctionP);
52 var s1a = s1.then(testFunction, testFunction, testFunction);
53 var s1b = s1.then(testFunctionP, testFunctionP, testFunctionP);
[all …]
DpromisePermutations.ts2then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => Promise<U>, progress?: (progre… method
3then<U>(success?: (value: T) => Promise<U>, error?: (error: any) => U, progress?: (progress: any) … method
4then<U>(success?: (value: T) => U, error?: (error: any) => Promise<U>, progress?: (progress: any) … method
5then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
10then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => IPromise<U>, progress?: (prog… method
11then<U>(success?: (value: T) => IPromise<U>, error?: (error: any) => U, progress?: (progress: any)… method
12then<U>(success?: (value: T) => U, error?: (error: any) => IPromise<U>, progress?: (progress: any)… method
13then<U>(success?: (value: T) => U, error?: (error: any) => U, progress?: (progress: any) => void):… method
49 var r1a = r1.then(testFunction, testFunction, testFunction);
50 var r1b = r1.then(testFunction, testFunction, testFunction).then(testFunction, testFunction, testFu…
[all …]
/third_party/openssl/test/ssl-tests/
D19-mac-then-encrypt.cnf5 test-0 = 0-disable-encrypt-then-mac-server-sha
6 test-1 = 1-disable-encrypt-then-mac-client-sha
7 test-2 = 2-disable-encrypt-then-mac-both-sha
8 test-3 = 3-disable-encrypt-then-mac-server-sha2
9 test-4 = 4-disable-encrypt-then-mac-client-sha2
10 test-5 = 5-disable-encrypt-then-mac-both-sha2
11 test-6 = 6-disable-encrypt-then-mac-server-sha-tls1
12 test-7 = 7-disable-encrypt-then-mac-client-sha-tls1
13 test-8 = 8-disable-encrypt-then-mac-both-sha-tls1
16 [0-disable-encrypt-then-mac-server-sha]
[all …]
/third_party/node/test/sequential/
Dtest-debugger-run-after-quit-restart.js24 .then(() => cli.waitForPrompt())
25 .then(() => cli.stepCommand('n'))
26 .then(() => {
32 .then(() => cli.command('cont'))
33 .then(() => cli.waitFor(/disconnect/))
34 .then(() => {
40 .then(() => {
44 .then(() => cli.command('cont'))
45 .then(() => cli.waitFor(/start the app/))
46 .then(() => {
[all …]
Dtest-debugger-exceptions.js24 .then(() => cli.waitForPrompt())
25 .then(() => {
29 .then(() => cli.command('c'))
31 .then(() => cli.waitFor(/disconnect|FATAL ERROR/))
34 .then(() => cli.stepCommand('r'))
35 .then(() => cli.waitForInitialBreak())
36 .then(() => {
39 .then(() => cli.command('breakOnException'))
40 .then(() => cli.stepCommand('c'))
41 .then(() => {
[all …]
/third_party/protobuf/protoc-artifacts/
Dbuild-protoc.sh30 if [[ $# < 3 ]]; then
67 if [ -z "$lineno" ]; then
72 if [[ "$1" != "$2" ]]; then
85 if [[ "$OS" == windows || "$OS" == linux ]]; then
88 if [[ "$OS" == linux ]]; then
90 if [[ "$ARCH" == x86_32 ]]; then
92 elif [[ "$ARCH" == x86_64 ]]; then
94 elif [[ "$ARCH" == aarch_64 ]]; then
96 elif [[ "$ARCH" == s390x ]]; then
97 if [[ $host_machine == s390x ]];then
[all …]

12345678910>>...401