Home
last modified time | relevance | path

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

/third_party/typescript/tests/baselines/reference/
DdeeplyNestedConstraints.symbols8 type TypeMap<E extends Enum> = { [key in E[keyof E]]: number | boolean | string | number[] };
9 >TypeMap : Symbol(TypeMap, Decl(deeplyNestedConstraints.ts, 2, 44))
16 class BufferPool<E extends Enum, M extends TypeMap<E>> {
21 >TypeMap : Symbol(TypeMap, Decl(deeplyNestedConstraints.ts, 2, 44))
DdeeplyNestedConstraints.js6 type TypeMap<E extends Enum> = { [key in E[keyof E]]: number | boolean | string | number[] };
8 class BufferPool<E extends Enum, M extends TypeMap<E>> {
30 type TypeMap<E extends Enum> = {
33 declare class BufferPool<E extends Enum, M extends TypeMap<E>> {
DdeeplyNestedConstraints.types7 type TypeMap<E extends Enum> = { [key in E[keyof E]]: number | boolean | string | number[] };
8 >TypeMap : TypeMap<E>
10 class BufferPool<E extends Enum, M extends TypeMap<E>> {
DcorrelatedUnions.js52 type TypeMap = {
57 type Keys = keyof TypeMap;
59 type HandlerMap = { [P in Keys]: (x: TypeMap[P]) => void };
68 data: TypeMap[P]
399 type TypeMap = {
403 type Keys = keyof TypeMap;
405 [P in Keys]: (x: TypeMap[P]) => void;
411 data: TypeMap[P];
DcorrelatedUnions.types148 type TypeMap = {
149 >TypeMap : { foo: string; bar: number; }
159 type Keys = keyof TypeMap;
160 >Keys : keyof TypeMap
162 type HandlerMap = { [P in Keys]: (x: TypeMap[P]) => void };
164 >x : TypeMap[P]
196 data: TypeMap[P]
197 >data : TypeMap[P]
202 >data : DataEntry<keyof TypeMap>[]
229 >process : <K extends keyof TypeMap>(data: DataEntry<K>[]) => void
[all …]
DcorrelatedUnions.symbols175 type TypeMap = {
176 >TypeMap : Symbol(TypeMap, Decl(correlatedUnions.ts, 46, 1))
186 type Keys = keyof TypeMap;
188 >TypeMap : Symbol(TypeMap, Decl(correlatedUnions.ts, 46, 1))
190 type HandlerMap = { [P in Keys]: (x: TypeMap[P]) => void };
195 >TypeMap : Symbol(TypeMap, Decl(correlatedUnions.ts, 46, 1))
230 data: TypeMap[P]
232 >TypeMap : Symbol(TypeMap, Decl(correlatedUnions.ts, 46, 1))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Linker/
DIRMover.cpp389 TypeMapTy TypeMap; member in __anonf0edcc3f0211::IRLinker
525 TypeMap(Set), GValMaterializer(*this), LValMaterializer(*this), in IRLinker()
527 Mapper(ValueMap, RF_MoveDistinctMDs | RF_IgnoreMissingLocals, &TypeMap, in IRLinker()
627 new GlobalVariable(DstM, TypeMap.get(SGVar->getValueType()), in copyGlobalVariableProto()
646 C, i, Attribute::getWithByValType(C, TypeMap.get(Ty))); in mapAttributeTypes()
657 auto *F = Function::Create(TypeMap.get(SF->getFunctionType()), in copyFunctionProto()
671 auto *Ty = TypeMap.get(SGIS->getValueType()); in copyGlobalIndirectSymbolProto()
697 Function::Create(cast<FunctionType>(TypeMap.get(SGV->getValueType())), in copyGlobalValueProto()
702 new GlobalVariable(DstM, TypeMap.get(SGV->getValueType()), in copyGlobalValueProto()
751 TypeMap.addTypeMapping(DGV->getType(), SGV.getType()); in computeTypeMapping()
[all …]
/third_party/typescript/tests/cases/compiler/
DdeeplyNestedConstraints.ts8 type TypeMap<E extends Enum> = { [key in E[keyof E]]: number | boolean | string | number[] }; alias
10 class BufferPool<E extends Enum, M extends TypeMap<E>> {
DcorrelatedUnions.ts54 type TypeMap = { alias
59 type Keys = keyof TypeMap; alias
61 type HandlerMap = { [P in Keys]: (x: TypeMap[P]) => void };
70 data: TypeMap[P]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/
DValueEnumerator.h59 TypeMapType TypeMap; variable
168 TypeMapType::const_iterator I = TypeMap.find(T); in getTypeID()
169 assert(I != TypeMap.end() && "Type not in ValueEnumerator!"); in getTypeID()
DValueEnumerator.cpp855 unsigned *TypeID = &TypeMap[Ty]; in EnumerateType()
874 TypeID = &TypeMap[Ty]; in EnumerateType()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DBlockFrequencyInfoImpl.h544 template <class BlockT> struct TypeMap {}; struct
545 template <> struct TypeMap<BasicBlock> {
552 template <> struct TypeMap<MachineBasicBlock> {
844 using BlockT = typename bfi_detail::TypeMap<BT>::BlockT;
845 using FunctionT = typename bfi_detail::TypeMap<BT>::FunctionT;
847 typename bfi_detail::TypeMap<BT>::BranchProbabilityInfoT;
848 using LoopT = typename bfi_detail::TypeMap<BT>::LoopT;
849 using LoopInfoT = typename bfi_detail::TypeMap<BT>::LoopInfoT;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/
DLegalizerInfo.h1336 using TypeMap = DenseMap<LLT, LegalizeAction>; variable
1337 SmallVector<TypeMap, 1> SpecifiedActions[LastOp - FirstOp + 1];
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_tracing/
DvktRayTracingDataSpillTests.cpp248 using TypeMap = std::map<TypePair, std::string>; in getGLSLInputValDecl() typedef
256 const TypeMap map = in getGLSLInputValDecl()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_tracing/
DvktRayTracingDataSpillTests.cpp248 using TypeMap = std::map<TypePair, std::string>; in getGLSLInputValDecl() typedef
256 const TypeMap map = in getGLSLInputValDecl()
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcPackedPixelsTests.cpp585 typedef std::map<GLenum, std::string> TypeMap; in getTypeStr() typedef
586 static TypeMap typeMap; in getTypeStr()
599 TypeMap::iterator it = typeMap.find(type); in getTypeStr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp6583 const Constant *TypeMap = cast<Constant>(I.getArgOperand(1)); in visitIntrinsicCall() local
6586 GFI->addStackRoot(FI->getIndex(), TypeMap); in visitIntrinsicCall()