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

  /external/clang/lib/AST/
ExprCXX.cpp 527 QualType DestType = getType();
531 DestType = DestType->castAs<PointerType>()->getPointeeType();
541 cast<CXXRecordDecl>(DestType->castAs<RecordType>()->getDecl());
    [all...]
ExprConstant.cpp 220 static APSInt HandleFloatToIntCast(QualType DestType, QualType SrcType,
222 unsigned DestWidth = Ctx.getIntWidth(DestType);
224 bool DestSigned = DestType->isSignedIntegerOrEnumerationType();
233 static APFloat HandleFloatToFloatCast(QualType DestType, QualType SrcType,
237 Result.convert(Ctx.getFloatTypeSemantics(DestType),
242 static APSInt HandleIntToIntCast(QualType DestType, QualType SrcType,
244 unsigned DestWidth = Ctx.getIntWidth(DestType);
249 Result.setIsUnsigned(DestType->isUnsignedIntegerOrEnumerationType());
253 static APFloat HandleIntToFloatCast(QualType DestType, QualType SrcType,
256 APFloat Result(Ctx.getFloatTypeSemantics(DestType), 1)
    [all...]
  /external/clang/lib/Sema/
SemaCXXCast.cpp 45 static void CheckConstCast(Sema &Self, ExprResult &SrcExpr, QualType DestType,
49 static void CheckReinterpretCast(Sema &Self, ExprResult &SrcExpr, QualType DestType,
54 static void CheckStaticCast(Sema &Self, ExprResult &SrcExpr, QualType DestType,
59 static void CheckDynamicCast(Sema &Self, ExprResult &SrcExpr, QualType DestType,
66 static bool CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
81 QualType DestType, bool CStyle,
86 QualType DestType, bool CStyle,
92 QualType DestType, bool CStyle,
98 CanQualType DestType, bool CStyle,
106 QualType DestType,bool CStyle
    [all...]
SemaExpr.cpp     [all...]
SemaOverload.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 31 milliseconds