HomeSort by relevance Sort by last modified time
    Searched defs:DestType (Results 1 - 7 of 7) sorted by null

  /external/clang/lib/AST/
ExprCXX.cpp 529 QualType DestType = getType();
533 DestType = DestType->castAs<PointerType>()->getPointeeType();
543 cast<CXXRecordDecl>(DestType->castAs<RecordType>()->getDecl());
    [all...]
ExprConstant.cpp 222 static APSInt HandleFloatToIntCast(QualType DestType, QualType SrcType,
224 unsigned DestWidth = Ctx.getIntWidth(DestType);
226 bool DestSigned = DestType->isSignedIntegerOrEnumerationType();
235 static APFloat HandleFloatToFloatCast(QualType DestType, QualType SrcType,
239 Result.convert(Ctx.getFloatTypeSemantics(DestType),
244 static APSInt HandleIntToIntCast(QualType DestType, QualType SrcType,
246 unsigned DestWidth = Ctx.getIntWidth(DestType);
251 Result.setIsUnsigned(DestType->isUnsignedIntegerOrEnumerationType());
255 static APFloat HandleIntToFloatCast(QualType DestType, QualType SrcType,
258 APFloat Result(Ctx.getFloatTypeSemantics(DestType), 1)
    [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 48 CastOperation(Sema &S, QualType destType, ExprResult src)
49 : Self(S), SrcExpr(src), DestType(destType),
50 ResultType(destType.getNonLValueExprType(S.Context)),
51 ValueKind(Expr::getValueKindForType(destType)),
64 QualType DestType;
117 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange);
124 if (Self.CheckObjCARCConversion(OpRange, DestType, src, CCK) ==
143 static bool CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
158 QualType DestType, bool CStyle
    [all...]
SemaInit.cpp     [all...]
SemaOverload.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 198 llvm::Type *DestType = Int8PtrTy;
199 if (ArgValue->getType() != DestType)
200 ArgValue = Builder.CreateBitCast(ArgValue, DestType,
    [all...]

Completed in 2995 milliseconds