/external/clang/lib/CodeGen/ |
D | CGExprScalar.cpp | 109 QualType DstType, llvm::Type *DstTy); 555 QualType DstType, in EmitFloatConversionCheck() argument 566 assert(DstType->isFloatingType()); in EmitFloatConversionCheck() 570 APFloat::getLargest(CGF.getContext().getFloatTypeSemantics(DstType)); in EmitFloatConversionCheck() 596 unsigned Width = CGF.getContext().getIntWidth(DstType); in EmitFloatConversionCheck() 597 bool Unsigned = DstType->isUnsignedIntegerOrEnumerationType(); in EmitFloatConversionCheck() 654 if (CGF.getContext().getFloatingTypeOrder(OrigSrcType, DstType) != 1) in EmitFloatConversionCheck() 661 CGF.getContext().getFloatTypeSemantics(DstType); in EmitFloatConversionCheck() 682 CGF.EmitCheckTypeDescriptor(DstType) in EmitFloatConversionCheck() 691 QualType DstType) { in EmitScalarConversion() argument [all …]
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
D | GraphicsContext3DImagePacking.cpp | 251 template<int format, typename SourceType, typename DstType> 252 void unpack(const SourceType*, DstType*, unsigned) in unpack() argument 559 template<int format, int alphaOp, typename SourceType, typename DstType> 560 void pack(const SourceType*, DstType*, unsigned) in pack() argument 1425 typedef typename DataTypeForFormat<DstFormat>::Type DstType; in convert() typedef 1429 const ptrdiff_t dstStrideInElements = m_dstStride / sizeof(DstType); in convert() 1435 DstType* dstRowStart = static_cast<DstType*>(m_dstStart); in convert()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 1118 Sema::DiagnoseAssignmentEnum(QualType DstType, QualType SrcType, in DiagnoseAssignmentEnum() argument 1125 if (const EnumType *ET = DstType->getAs<EnumType>()) in DiagnoseAssignmentEnum() 1126 if (!Context.hasSameType(SrcType, DstType) && in DiagnoseAssignmentEnum() 1131 unsigned DstWidth = Context.getIntWidth(DstType); in DiagnoseAssignmentEnum() 1132 bool DstIsSigned = DstType->isSignedIntegerOrEnumerationType(); in DiagnoseAssignmentEnum() 1161 << DstType; in DiagnoseAssignmentEnum()
|
D | SemaExpr.cpp | 10377 static void MakeObjCStringLiteralFixItHint(Sema& SemaRef, QualType DstType, in MakeObjCStringLiteralFixItHint() argument 10383 const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>(); in MakeObjCStringLiteralFixItHint() 10413 QualType DstType, QualType SrcType, in DiagnoseAssignmentResult() argument 10431 DiagnoseAssignmentEnum(DstType, SrcType, SrcExpr); in DiagnoseAssignmentResult() 10436 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); in DiagnoseAssignmentResult() 10441 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); in DiagnoseAssignmentResult() 10445 MakeObjCStringLiteralFixItHint(*this, DstType, SrcExpr, Hint, IsNSString); in DiagnoseAssignmentResult() 10450 CheckInferredResultType = DstType->isObjCObjectPointerType() && in DiagnoseAssignmentResult() 10453 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this); in DiagnoseAssignmentResult() 10457 DstType = DstType.getUnqualifiedType(); in DiagnoseAssignmentResult() [all …]
|
/external/clang/include/clang/AST/ |
D | Expr.h | 4466 AsTypeExpr(Expr* SrcExpr, QualType DstType, in AsTypeExpr() argument 4469 : Expr(AsTypeExprClass, DstType, VK, OK, in AsTypeExpr() 4470 DstType->isDependentType(), in AsTypeExpr() 4471 DstType->isDependentType() || SrcExpr->isValueDependent(), in AsTypeExpr() 4472 (DstType->isInstantiationDependentType() || in AsTypeExpr() 4474 (DstType->containsUnexpandedParameterPack() || in AsTypeExpr()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 7098 QualType DstType, QualType SrcType, 7104 void DiagnoseAssignmentEnum(QualType DstType, QualType SrcType,
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolution.cpp | 1545 Type *DstType = Trunc->getType(); in getAddExpr() local 1590 return getTruncateExpr(Fold, DstType); in getAddExpr()
|