Home
last modified time | relevance | path

Searched refs:Chain2 (Results 1 – 17 of 17) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DchainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.types110 class Chain2<T extends I> {
111 >Chain2 : Chain2<T>
116 then<S extends T>(cb: (x: T) => S): Chain2<S> {
117 >then : <S extends T>(cb: (x: T) => S) => Chain2<S>
132 (new Chain2(i)).then(ii => t).then(tt => s).value.x = "";
133 >(new Chain2(i)).then(ii => t).then(tt => s).value.x = "" : ""
134 >(new Chain2(i)).then(ii => t).then(tt => s).value.x : number
135 >(new Chain2(i)).then(ii => t).then(tt => s).value : S
136 >(new Chain2(i)).then(ii => t).then(tt => s) : Chain2<S>
137 >(new Chain2(i)).then(ii => t).then : <S extends T>(cb: (x: T) => S) => Chain2<S>
[all …]
DpromiseChaining2.types3 class Chain2<T extends { length: number }> {
4 >Chain2 : Chain2<T>
10 then<S extends Function>(cb: (x: T) => S): Chain2<S> {
11 >then : <S extends Function>(cb: (x: T) => S) => Chain2<S>
25 >z : Chain2<Function>
26 >this.then(x => result).then(x => "abc").then(x => x.length) : Chain2<Function>
27 …then(x => result).then(x => "abc").then : <S extends Function>(cb: (x: Function) => S) => Chain2<S>
28 >this.then(x => result).then(x => "abc") : Chain2<Function>
29 >this.then(x => result).then : <S extends Function>(cb: (x: S) => S) => Chain2<S>
30 >this.then(x => result) : Chain2<S>
[all …]
DpromiseChaining1.types3 class Chain2<T extends { length: number }> {
4 >Chain2 : Chain2<T>
10 then<S extends Function>(cb: (x: T) => S): Chain2<S> {
11 >then : <S extends Function>(cb: (x: T) => S) => Chain2<S>
25 >z : Chain2<Function>
26 >this.then(x => result)/*S*/.then(x => "abc")/*Function*/.then(x => x.length) : Chain2<Function>
27 …/*S*/.then(x => "abc")/*Function*/.then : <S extends Function>(cb: (x: Function) => S) => Chain2<S>
28 >this.then(x => result)/*S*/.then(x => "abc") : Chain2<Function>
29 >this.then(x => result)/*S*/.then : <S extends Function>(cb: (x: S) => S) => Chain2<S>
30 >this.then(x => result) : Chain2<S>
[all …]
DchainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.symbols95 class Chain2<T extends I> {
96 >Chain2 : Symbol(Chain2, Decl(chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.ts, 22,…
101 >value : Symbol(Chain2.value, Decl(chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.ts…
104 then<S extends T>(cb: (x: T) => S): Chain2<S> {
105 >then : Symbol(Chain2.then, Decl(chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.ts, …
112 >Chain2 : Symbol(Chain2, Decl(chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.ts, 22,…
129 (new Chain2(i)).then(ii => t).then(tt => s).value.x = "";
130 >(new Chain2(i)).then(ii => t).then(tt => s).value.x : Symbol(I.x, Decl(chainedCallsWithTypeParamet…
131 >(new Chain2(i)).then(ii => t).then(tt => s).value : Symbol(Chain2.value, Decl(chainedCallsWithType…
132 >(new Chain2(i)).then(ii => t).then : Symbol(Chain2.then, Decl(chainedCallsWithTypeParameterConstra…
[all …]
DpromiseChaining1.symbols3 class Chain2<T extends { length: number }> {
4 >Chain2 : Symbol(Chain2, Decl(promiseChaining1.ts, 0, 0))
9 >value : Symbol(Chain2.value, Decl(promiseChaining1.ts, 2, 16))
12 then<S extends Function>(cb: (x: T) => S): Chain2<S> {
13 >then : Symbol(Chain2.then, Decl(promiseChaining1.ts, 2, 36))
20 >Chain2 : Symbol(Chain2, Decl(promiseChaining1.ts, 0, 0))
26 >this.value : Symbol(Chain2.value, Decl(promiseChaining1.ts, 2, 16))
27 >this : Symbol(Chain2, Decl(promiseChaining1.ts, 0, 0))
28 >value : Symbol(Chain2.value, Decl(promiseChaining1.ts, 2, 16))
33 >this.then(x => result)/*S*/.then(x => "abc")/*Function*/.then : Symbol(Chain2.then, Decl(promiseCh…
[all …]
DpromiseChaining2.symbols3 class Chain2<T extends { length: number }> {
4 >Chain2 : Symbol(Chain2, Decl(promiseChaining2.ts, 0, 0))
9 >value : Symbol(Chain2.value, Decl(promiseChaining2.ts, 2, 16))
12 then<S extends Function>(cb: (x: T) => S): Chain2<S> {
13 >then : Symbol(Chain2.then, Decl(promiseChaining2.ts, 2, 36))
20 >Chain2 : Symbol(Chain2, Decl(promiseChaining2.ts, 0, 0))
26 >this.value : Symbol(Chain2.value, Decl(promiseChaining2.ts, 2, 16))
27 >this : Symbol(Chain2, Decl(promiseChaining2.ts, 0, 0))
28 >value : Symbol(Chain2.value, Decl(promiseChaining2.ts, 2, 16))
33 >this.then(x => result).then(x => "abc").then : Symbol(Chain2.then, Decl(promiseChaining2.ts, 2, 36…
[all …]
DpromiseChaining1.js3 class Chain2<T extends { length: number }> { class
5 then<S extends Function>(cb: (x: T) => S): Chain2<S> {
9 return new Chain2(result);
15 var Chain2 = /** @class */ (function () {
16 function Chain2(value) { class
19 Chain2.prototype.then = function (cb) {
23 return new Chain2(result);
25 return Chain2;
DpromiseChaining2.js3 class Chain2<T extends { length: number }> { class
5 then<S extends Function>(cb: (x: T) => S): Chain2<S> {
9 return new Chain2(result);
15 var Chain2 = /** @class */ (function () {
16 function Chain2(value) { class
19 Chain2.prototype.then = function (cb) {
23 return new Chain2(result);
25 return Chain2;
DchainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.js25 class Chain2<T extends I> { class
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 = "";
63 var Chain2 = /** @class */ (function () {
64 function Chain2(value) { class in Chain2
67 Chain2.prototype.then = function (cb) {
73 … (new Chain2(i)).then(function (ii) { return t; }).then(function (tt) { return s; }).value.x = "";
76 …(new Chain2(i)).then(function (ii) { return t; }).then(function (tt) { return t; }).then(function …
[all …]
DpromiseChaining1.errors.txt7 class Chain2<T extends { length: number }> {
9 then<S extends Function>(cb: (x: T) => S): Chain2<S> {
19 return new Chain2(result);
DpromiseChaining2.errors.txt7 class Chain2<T extends { length: number }> {
9 then<S extends Function>(cb: (x: T) => S): Chain2<S> {
19 return new Chain2(result);
DchainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.errors.txt42 class Chain2<T extends I> {
44 then<S extends T>(cb: (x: T) => S): Chain2<S> {
50 (new Chain2(i)).then(ii => t).then(tt => s).value.x = "";
56 (new Chain2(i)).then(ii => t).then(tt => t).then(tt => t).then(tt => t).value.x = "";
59 (new Chain2(i)).then(ii => s).then(ss => s).then(ss => s).then(ss => s).value.x = "";
/third_party/typescript/tests/cases/compiler/
DchainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.ts24 class Chain2<T extends I> { class
26 then<S extends T>(cb: (x: T) => S): Chain2<S> {
32 (new Chain2(i)).then(ii => t).then(tt => s).value.x = "";
36 (new Chain2(i)).then(ii => t).then(tt => t).then(tt => t).then(tt => t).value.x = "";
37 (new Chain2(i)).then(ii => s).then(ss => s).then(ss => s).then(ss => s).value.x = "";
DpromiseChaining2.ts2 class Chain2<T extends { length: number }> { class
4 then<S extends Function>(cb: (x: T) => S): Chain2<S> {
8 return new Chain2(result);
DpromiseChaining1.ts2 class Chain2<T extends { length: number }> { class
4 then<S extends Function>(cb: (x: T) => S): Chain2<S> {
8 return new Chain2(result);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp106 SDValue Chain2 = memsetStore(DAG, DL, Chain, Dst, ByteVal, Size2, in EmitTargetCodeForMemset() local
108 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chain1, Chain2); in EmitTargetCodeForMemset()
118 SDValue Chain2 = in EmitTargetCodeForMemset() local
121 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Chain1, Chain2); in EmitTargetCodeForMemset()
DSystemZISelLowering.cpp5916 SDValue Chain2 = N2->getOperand(0); in MergeInputChains() local
5919 if (Chain1 == Chain2) in MergeInputChains()