Home
last modified time | relevance | path

Searched defs:T32 (Results 1 – 9 of 9) sorted by relevance

/third_party/typescript/tests/cases/conformance/types/tuple/
DreadonlyArraysAndTuples.ts14 type T32 = readonly readonly string[]; // Error alias
DunionsOfTupleTypes1.ts20 type T32 = T3[2]; // number alias
DvariadicTuples1.ts259 type T32 = DropLast<[string]>; alias
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypes1.ts21 type T32 = { [P in keyof number]: void }; alias
/third_party/typescript/tests/cases/conformance/types/unknown/
DunknownType1.ts34 type T32<T> = never extends T ? true : false; // true alias
/third_party/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/
DinstantiationExpressions.ts159 type T32<B> = InstanceType<T30<B>>; // { b: B } alias
/third_party/typescript/tests/cases/conformance/types/keyof/
DkeyofAndIndexedAccessErrors.ts35 type T32 = string[][string]; // Error alias
/third_party/typescript/tests/cases/conformance/types/conditional/
DinferTypes1.ts67 type T32 = X1<{ x: number, y: string, z: boolean }>; // [number, string] alias
/third_party/vixl/src/aarch32/
Dconstants-aarch32.h41 enum InstructionSet { A32, T32 }; enumerator