/third_party/typescript/tests/baselines/reference/ |
D | enumAssignmentCompat5.js | 5 enum Computed { 18 let c: Computed = n; // ok 21 let ca: Computed.A = 1; // error, Computed.A isn't a literal type because Computed has no enum lite… 34 var Computed; variable 35 (function (Computed) { argument 36 Computed[Computed["A"] = 2] = "A"; 37 Computed[Computed["B"] = 4] = "B"; 38 Computed[Computed["C"] = 8] = "C"; 39 })(Computed || (Computed = {}));
|
D | enumAssignmentCompat5.types | 10 enum Computed { 11 >Computed : Computed 14 >A : Computed 20 >B : Computed 26 >C : Computed 63 let c: Computed = n; // ok 64 >c : Computed 69 >c : Computed 74 >c : Computed 77 let ca: Computed.A = 1; // error, Computed.A isn't a literal type because Computed has no enum lite… [all …]
|
D | enumAssignmentCompat5.symbols | 10 enum Computed { 11 >Computed : Symbol(Computed, Decl(enumAssignmentCompat5.ts, 2, 1)) 14 >A : Symbol(Computed.A, Decl(enumAssignmentCompat5.ts, 3, 15)) 17 >B : Symbol(Computed.B, Decl(enumAssignmentCompat5.ts, 4, 15)) 20 >C : Symbol(Computed.C, Decl(enumAssignmentCompat5.ts, 5, 15)) 48 let c: Computed = n; // ok 50 >Computed : Symbol(Computed, Decl(enumAssignmentCompat5.ts, 2, 1)) 60 let ca: Computed.A = 1; // error, Computed.A isn't a literal type because Computed has no enum lite… 62 >Computed : Symbol(Computed, Decl(enumAssignmentCompat5.ts, 2, 1)) 63 >A : Symbol(Computed.A, Decl(enumAssignmentCompat5.ts, 3, 15))
|
D | jsDeclarationsWithDefaultAsNamespaceLikeMerge.types | 2 type Computed = () => any; 3 >Computed : Computed 13 mapState: Mapper<Computed>; 14 >mapState : Mapper<Computed> 24 >mapState : import("/helper").Mapper<import("/helper").Computed> 29 …ed: { ...mapState(['panels']) }} : { computed: { panels: import("/helper").Computed; }; } 32 >computed : { panels: import("/helper").Computed; } 33 >{ ...mapState(['panels']) } : { panels: import("/helper").Computed; } 36 >mapState(['panels']) : { panels: import("/helper").Computed; } 37 >mapState : import("/helper").Mapper<import("/helper").Computed>
|
D | enumConstantMemberWithTemplateLiterals.errors.txt | 1 …ce/enums/enumConstantMemberWithTemplateLiterals.ts(28,9): error TS2553: Computed values are not pe… 2 …ce/enums/enumConstantMemberWithTemplateLiterals.ts(29,9): error TS2553: Computed values are not pe… 3 …ce/enums/enumConstantMemberWithTemplateLiterals.ts(30,9): error TS2553: Computed values are not pe… 4 …ce/enums/enumConstantMemberWithTemplateLiterals.ts(31,9): error TS2553: Computed values are not pe… 37 !!! error TS2553: Computed values are not permitted in an enum with string valued members. 40 !!! error TS2553: Computed values are not permitted in an enum with string valued members. 43 !!! error TS2553: Computed values are not permitted in an enum with string valued members. 46 !!! error TS2553: Computed values are not permitted in an enum with string valued members.
|
D | enumAssignmentCompat5.errors.txt | 1 tests/cases/compiler/enumAssignmentCompat5.ts(20,9): error TS2535: Enum type 'Computed' has members… 8 enum Computed { 21 let c: Computed = n; // ok 24 …let ca: Computed.A = 1; // error, Computed.A isn't a literal type because Computed has no enum lit… 26 !!! error TS2535: Enum type 'Computed' has members with initializers that are not literals.
|
D | enumConstantMemberWithString.errors.txt | 1 tests/cases/conformance/enums/enumConstantMemberWithString.ts(5,9): error TS2553: Computed values a… 2 tests/cases/conformance/enums/enumConstantMemberWithString.ts(6,9): error TS2553: Computed values a… 3 tests/cases/conformance/enums/enumConstantMemberWithString.ts(18,9): error TS2553: Computed values … 13 !!! error TS2553: Computed values are not permitted in an enum with string valued members. 16 !!! error TS2553: Computed values are not permitted in an enum with string valued members. 30 !!! error TS2553: Computed values are not permitted in an enum with string valued members.
|
D | jsDeclarationsWithDefaultAsNamespaceLikeMerge.symbols | 2 type Computed = () => any; 3 >Computed : Symbol(Computed, Decl(helper.d.ts, 0, 0)) 29 mapState: Mapper<Computed>; 32 >Computed : Symbol(Computed, Decl(helper.d.ts, 0, 0))
|
D | parserComputedPropertyName34.errors.txt | 1 …mputedPropertyNames/parserComputedPropertyName34.ts(3,5): error TS1164: Computed property names ar… 3 …mputedPropertyNames/parserComputedPropertyName34.ts(4,5): error TS1164: Computed property names ar… 11 !!! error TS1164: Computed property names are not allowed in enums. 16 !!! error TS1164: Computed property names are not allowed in enums.
|
D | parserComputedPropertyName30.errors.txt | 1 …mputedPropertyNames/parserComputedPropertyName30.ts(3,5): error TS1164: Computed property names ar… 4 …mputedPropertyNames/parserComputedPropertyName30.ts(4,5): error TS1164: Computed property names ar… 12 !!! error TS1164: Computed property names are not allowed in enums. 19 !!! error TS1164: Computed property names are not allowed in enums.
|
D | jsDeclarationsWithDefaultAsNamespaceLikeMerge.js | 4 type Computed = () => any; 10 mapState: Mapper<Computed>; 28 const panels: import("./helper").Computed;
|
D | enumErrors.errors.txt | 11 tests/cases/conformance/enums/enumErrors.ts(36,9): error TS2553: Computed values are not permitted … 12 tests/cases/conformance/enums/enumErrors.ts(37,9): error TS2553: Computed values are not permitted … 13 tests/cases/conformance/enums/enumErrors.ts(38,9): error TS2553: Computed values are not permitted … 14 tests/cases/conformance/enums/enumErrors.ts(39,9): error TS2553: Computed values are not permitted … 15 tests/cases/conformance/enums/enumErrors.ts(40,9): error TS2553: Computed values are not permitted … 86 !!! error TS2553: Computed values are not permitted in an enum with string valued members. 89 !!! error TS2553: Computed values are not permitted in an enum with string valued members. 92 !!! error TS2553: Computed values are not permitted in an enum with string valued members. 95 !!! error TS2553: Computed values are not permitted in an enum with string valued members. 98 !!! error TS2553: Computed values are not permitted in an enum with string valued members.
|
D | typeArgumentInferenceWithObjectLiteral.symbols | 2 interface Computed<T> { 3 >Computed : Symbol(Computed, Decl(typeArgumentInferenceWithObjectLiteral.ts, 0, 0)) 7 >read : Symbol(Computed.read, Decl(typeArgumentInferenceWithObjectLiteral.ts, 0, 23)) 11 >write : Symbol(Computed.write, Decl(typeArgumentInferenceWithObjectLiteral.ts, 1, 14)) 16 function foo<T>(x: Computed<T>) { } 20 >Computed : Symbol(Computed, Decl(typeArgumentInferenceWithObjectLiteral.ts, 0, 0))
|
D | typeArgumentInferenceWithObjectLiteral.types | 2 interface Computed<T> { 11 function foo<T>(x: Computed<T>) { } 12 >foo : <T>(x: Computed<T>) => void 13 >x : Computed<T> 21 >foo : <T>(x: Computed<T>) => void 40 >foo : <T>(x: Computed<T>) => void
|
D | keyofAndIndexedAccess.js | 405 interface Options1<Data, Computed> { 407 computed?: Computed; 410 declare class Component1<Data, Computed> { 411 constructor(options: Options1<Data, Computed>); 412 get<K extends keyof (Data & Computed)>(key: K): (Data & Computed)[K]; 425 interface Options2<Data, Computed> { 427 computed?: Computed; 430 declare class Component2<Data, Computed> { 431 constructor(options: Options2<Data, Computed>); 432 get<K extends keyof Data | keyof Computed>(key: K): (Data & Computed)[K]; [all …]
|
D | parserComputedPropertyName16.errors.txt | 1 …mputedPropertyNames/parserComputedPropertyName16.ts(2,3): error TS1164: Computed property names ar… 8 !!! error TS1164: Computed property names are not allowed in enums.
|
D | parserES5ComputedPropertyName6.errors.txt | 1 …utedPropertyNames/parserES5ComputedPropertyName6.ts(2,3): error TS1164: Computed property names ar… 8 !!! error TS1164: Computed property names are not allowed in enums.
|
D | parserComputedPropertyName26.errors.txt | 1 …mputedPropertyNames/parserComputedPropertyName26.ts(3,5): error TS1164: Computed property names ar… 10 !!! error TS1164: Computed property names are not allowed in enums.
|
D | typeArgumentInferenceWithObjectLiteral.js | 2 interface Computed<T> { 7 function foo<T>(x: Computed<T>) { }
|
/third_party/typescript/tests/cases/compiler/ |
D | enumAssignmentCompat5.ts | 4 enum Computed { enum 17 let c: Computed = n; // ok 20 let ca: Computed.A = 1; // error, Computed.A isn't a literal type because Computed has no enum lite…
|
D | jsDeclarationsWithDefaultAsNamespaceLikeMerge.ts | 6 type Computed = () => any; alias 12 mapState: Mapper<Computed>;
|
/third_party/typescript/tests/cases/conformance/types/keyof/ |
D | keyofAndIndexedAccess.ts | 407 interface Options1<Data, Computed> { 409 computed?: Computed; 412 declare class Component1<Data, Computed> { 413 constructor(options: Options1<Data, Computed>); 414 get<K extends keyof (Data & Computed)>(key: K): (Data & Computed)[K]; 427 interface Options2<Data, Computed> { 429 computed?: Computed; 432 declare class Component2<Data, Computed> { 433 constructor(options: Options2<Data, Computed>); 434 get<K extends keyof Data | keyof Computed>(key: K): (Data & Computed)[K];
|
/third_party/openh264/test/api/ |
D | sha1.c | 105 context->Computed = 0; in SHA1Reset() 137 if (!context->Computed) in SHA1Result() 140 context->Computed = 1; in SHA1Result() 180 if (context->Computed || context->Corrupted) in SHA1Input()
|
/third_party/typescript/tests/cases/conformance/expressions/functionCalls/ |
D | typeArgumentInferenceWithObjectLiteral.ts | 1 interface Computed<T> { interface 6 function foo<T>(x: Computed<T>) { }
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | ObjCARCAnalysisUtils.h | 96 const Value *Computed = GetUnderlyingObjCPtr(V, DL); in GetUnderlyingObjCPtrCached() local 97 Cache[V] = const_cast<Value *>(Computed); in GetUnderlyingObjCPtrCached() 98 return Computed; in GetUnderlyingObjCPtrCached()
|