Home
last modified time | relevance | path

Searched refs:DstType (Results 1 – 7 of 7) sorted by relevance

/external/clang/lib/CodeGen/
DCGExprScalar.cpp109 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/
DGraphicsContext3DImagePacking.cpp251 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/
DSemaStmt.cpp1118 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()
DSemaExpr.cpp10377 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/
DExpr.h4466 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/
DSema.h7098 QualType DstType, QualType SrcType,
7104 void DiagnoseAssignmentEnum(QualType DstType, QualType SrcType,
/external/llvm/lib/Analysis/
DScalarEvolution.cpp1545 Type *DstType = Trunc->getType(); in getAddExpr() local
1590 return getTruncateExpr(Fold, DstType); in getAddExpr()