/third_party/typescript/tests/baselines/reference/ |
D | inferenceErasedSignatures.types | 50 type RType<T> = T extends SomeAbstractClass<any, any, infer R> ? R : never; 51 >RType : RType<T> 59 type SomeClassR = RType<SomeClass>; // boolean
|
D | inferenceErasedSignatures.symbols | 71 type RType<T> = T extends SomeAbstractClass<any, any, infer R> ? R : never; 72 >RType : Symbol(RType, Decl(inferenceErasedSignatures.ts, 19, 75)) 89 type SomeClassR = RType<SomeClass>; // boolean 91 >RType : Symbol(RType, Decl(inferenceErasedSignatures.ts, 19, 75))
|
D | inferenceErasedSignatures.js | 22 type RType<T> = T extends SomeAbstractClass<any, any, infer R> ? R : never; 26 type SomeClassR = RType<SomeClass>; // boolean
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
D | adapter9.c | 282 D3DRESOURCETYPE RType, in NineAdapter9_CheckDeviceFormat() argument 296 DBG("Usage=%x RType=%u CheckFormat=%s\n", Usage, RType, in NineAdapter9_CheckDeviceFormat() 317 switch (RType) { in NineAdapter9_CheckDeviceFormat() 347 (RType == D3DRTYPE_SURFACE || in NineAdapter9_CheckDeviceFormat() 348 RType == D3DRTYPE_TEXTURE)) in NineAdapter9_CheckDeviceFormat() 353 RType == D3DRTYPE_SURFACE) in NineAdapter9_CheckDeviceFormat() 358 if (CheckFormat == D3DFMT_ATOC && RType == D3DRTYPE_SURFACE) in NineAdapter9_CheckDeviceFormat() 370 switch (RType) { in NineAdapter9_CheckDeviceFormat() 403 if (RType != D3DRTYPE_TEXTURE && RType != D3DRTYPE_CUBETEXTURE && in NineAdapter9_CheckDeviceFormat()
|
D | adapter9.h | 94 D3DRESOURCETYPE RType,
|
/third_party/typescript/tests/cases/compiler/ |
D | inferenceErasedSignatures.ts | 24 type RType<T> = T extends SomeAbstractClass<any, any, infer R> ? R : never; alias 28 type SomeClassR = RType<SomeClass>; // boolean
|
/third_party/mesa3d/include/d3dadapter/ |
D | d3dadapter9.h | 42 …DEVTYPE DeviceType, D3DFORMAT AdapterFormat, DWORD Usage, D3DRESOURCETYPE RType, D3DFORMAT CheckFo… 77 …DEVTYPE DeviceType, D3DFORMAT AdapterFormat, DWORD Usage, D3DRESOURCETYPE RType, D3DFORMAT CheckFo…
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MicroMipsSizeReduction.cpp | 96 ReduceEntry(enum ReduceType RType, struct OpCodes Op, in ReduceEntry() 99 : eRType(RType), ReduceFunction(F), Ops(Op), OpInf(OpInf), Imm(Imm) {} in ReduceEntry() 110 enum ReduceType RType() const { return eRType; } in RType() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | MachOObjectFile.cpp | 2161 uint64_t RType = getRelocationType(Rel); in getRelocationTypeName() local 2175 if (RType > 5) in getRelocationTypeName() 2178 res = Table[RType]; in getRelocationTypeName() 2194 if (RType > 9) in getRelocationTypeName() 2197 res = Table[RType]; in getRelocationTypeName() 2213 if (RType > 9) in getRelocationTypeName() 2216 res = Table[RType]; in getRelocationTypeName() 2230 if (RType >= array_lengthof(Table)) in getRelocationTypeName() 2233 res = Table[RType]; in getRelocationTypeName() 2255 if (RType > 15) in getRelocationTypeName() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | ELFObjectWriter.cpp | 959 if (uint32_t RType = in writeRelocations() local 963 ERE32.setSymbolAndType(0, RType); in writeRelocations() 967 if (uint32_t RType = in writeRelocations() local 971 ERE32.setSymbolAndType(0, RType); in writeRelocations()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | TGParser.cpp | 1779 RecTy *RType = resolveTypes(Type, VTy); in ParseOperationCond() local 1780 if (!RType) { in ParseOperationCond() 1785 Type = RType; in ParseOperationCond()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopStrengthReduce.cpp | 2747 Type *RType = RVal->getType(); in isCompatibleIVType() local 2748 return (LType == RType) || (LType->isPointerTy() && RType->isPointerTy() && in isCompatibleIVType() 2753 RType->getPointerAddressSpace())); in isCompatibleIVType()
|
/third_party/mesa3d/include/D3D9/ |
D | d3d9.h | 92 …DEVTYPE DeviceType, D3DFORMAT AdapterFormat, DWORD Usage, D3DRESOURCETYPE RType, D3DFORMAT CheckFo… 453 …DEVTYPE DeviceType, D3DFORMAT AdapterFormat, DWORD Usage, D3DRESOURCETYPE RType, D3DFORMAT CheckFo… 500 …DEVTYPE DeviceType, D3DFORMAT AdapterFormat, DWORD Usage, D3DRESOURCETYPE RType, D3DFORMAT CheckFo…
|
/third_party/node/deps/v8/src/compiler/backend/s390/ |
D | code-generator-s390.cc | 472 template <int numOfOperand, class RType, class MType, class IType> 473 static inline int AssembleOp(Instruction* instr, RType r, MType m, IType i) { in AssembleOp()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 7596 EVT RType = Node->getValueType(1); in expandMULO() local 7597 if (RType.getSizeInBits() < Overflow.getValueSizeInBits()) in expandMULO() 7598 Overflow = DAG.getNode(ISD::TRUNCATE, dl, RType, Overflow); in expandMULO() 7600 assert(RType.getSizeInBits() == Overflow.getValueSizeInBits() && in expandMULO()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ScalarEvolution.cpp | 668 unsigned LType = LHS->getSCEVType(), RType = RHS->getSCEVType(); in CompareSCEVComplexity() local 669 if (LType != RType) in CompareSCEVComplexity() 670 return (int)LType - (int)RType; in CompareSCEVComplexity()
|