Home
last modified time | relevance | path

Searched refs:T30 (Results 1 – 25 of 55) sorted by relevance

123

/third_party/mesa3d/src/gtest/include/gtest/internal/
Dgtest-type-util.h390 typename T26, typename T27, typename T28, typename T29, typename T30>
395 T30> Tail;
403 typename T26, typename T27, typename T28, typename T29, typename T30,
409 T30, T31> Tail;
417 typename T26, typename T27, typename T28, typename T29, typename T30,
423 T30, T31, T32> Tail;
431 typename T26, typename T27, typename T28, typename T29, typename T30,
437 T30, T31, T32, T33> Tail;
445 typename T26, typename T27, typename T28, typename T29, typename T30,
451 T30, T31, T32, T33, T34> Tail;
[all …]
/third_party/typescript/tests/baselines/reference/
DinstantiationExpressions.js155 type T30<V> = typeof g1<V>; // { (a: V) => { a: V }; new (b: V) => { b: V }; }
156 type T31<A> = ReturnType<T30<A>>; // { a: A }
157 type T32<B> = InstanceType<T30<B>>; // { b: B }
368 type T30<V> = typeof g1<V>;
369 type T31<A> = ReturnType<T30<A>>;
370 type T32<B> = InstanceType<T30<B>>;
DreadonlyArraysAndTuples.js10 type T30 = readonly string; // Error
72 type T30 = readonly string;
DreadonlyArraysAndTuples.symbols22 type T30 = readonly string; // Error
23 >T30 : Symbol(T30, Decl(readonlyArraysAndTuples.ts, 6, 37))
DtailRecursiveConditionalTypes.js20 type T30 = Reverse<[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6…
44 type T30 = Reverse<[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6…
DtailRecursiveConditionalTypes.symbols77 type T30 = Reverse<[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6…
78 >T30 : Symbol(T30, Decl(tailRecursiveConditionalTypes.ts, 16, 83))
DmappedTypes1.js17 type T30 = { [P in keyof any]: void };
85 type T30 = {
DreadonlyArraysAndTuples.types20 type T30 = readonly string; // Error
21 >T30 : string
DtailRecursiveConditionalTypes.types34 type T30 = Reverse<[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6…
35 >T30 : [9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0, 9…
DmappedTypes1.symbols72 type T30 = { [P in keyof any]: void };
73 >T30 : Symbol(T30, Decl(mappedTypes1.ts, 13, 49))
DinstantiationExpressions.symbols574 type T30<V> = typeof g1<V>; // { (a: V) => { a: V }; new (b: V) => { b: V }; }
575 >T30 : Symbol(T30, Decl(instantiationExpressions.ts, 151, 1))
580 type T31<A> = ReturnType<T30<A>>; // { a: A }
584 >T30 : Symbol(T30, Decl(instantiationExpressions.ts, 151, 1))
587 type T32<B> = InstanceType<T30<B>>; // { b: B }
591 >T30 : Symbol(T30, Decl(instantiationExpressions.ts, 151, 1))
DmappedTypes1.types39 type T30 = { [P in keyof any]: void };
40 >T30 : { [x: string]: void; }
DunionsOfTupleTypes1.symbols46 type T30 = T3[0]; // string
47 >T30 : Symbol(T30, Decl(unionsOfTupleTypes1.ts, 13, 22))
DunknownType1.types68 type T30<T> = unknown extends T ? true : false; // Deferred
69 >T30 : T30<T>
DunionsOfTupleTypes1.types38 type T30 = T3[0]; // string
39 >T30 : string
DmappedTypesArraysTuples.js23 type T30 = Boxified<Partial<string[]>>;
149 type T30 = Boxified<Partial<string[]>>;
DunionsOfTupleTypes1.js17 type T30 = T3[0]; // string
/third_party/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/
DinstantiationExpressions.ts157 type T30<V> = typeof g1<V>; // { (a: V) => { a: V }; new (b: V) => { b: V }; } alias
158 type T31<A> = ReturnType<T30<A>>; // { a: A }
159 type T32<B> = InstanceType<T30<B>>; // { b: B }
/third_party/typescript/tests/cases/conformance/types/tuple/
DreadonlyArraysAndTuples.ts12 type T30 = readonly string; // Error alias
DunionsOfTupleTypes1.ts18 type T30 = T3[0]; // string alias
/third_party/typescript/tests/cases/compiler/
DtailRecursiveConditionalTypes.ts22 type T30 = Reverse<[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6… alias
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypes1.ts19 type T30 = { [P in keyof any]: void }; alias
DmappedTypesArraysTuples.ts25 type T30 = Boxified<Partial<string[]>>; alias
/third_party/typescript/tests/cases/conformance/types/unknown/
DunknownType1.ts32 type T30<T> = unknown extends T ? true : false; // Deferred alias
/third_party/typescript/tests/cases/conformance/types/keyof/
DkeyofAndIndexedAccessErrors.ts33 type T30 = string[]["length"]; alias

123