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

  /external/clang/lib/AST/
ExprCXX.cpp 528 QualType SrcType = getSubExpr()->getType();
531 if (const PointerType *SrcPTy = SrcType->getAs<PointerType>()) {
532 SrcType = SrcPTy->getPointeeType();
537 cast<CXXRecordDecl>(SrcType->castAs<RecordType>()->getDecl());
    [all...]
ExprConstant.cpp 222 static APSInt HandleFloatToIntCast(QualType DestType, QualType SrcType,
235 static APFloat HandleFloatToFloatCast(QualType DestType, QualType SrcType,
244 static APSInt HandleIntToIntCast(QualType DestType, QualType SrcType,
255 static APFloat HandleIntToFloatCast(QualType DestType, QualType SrcType,
    [all...]
  /external/clang/lib/Sema/
SemaCast.cpp 143 static bool CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
168 static TryCastResult TryStaticPointerDowncast(Sema &Self, QualType SrcType,
174 static TryCastResult TryStaticDowncast(Sema &Self, CanQualType SrcType,
182 QualType SrcType,
321 QualType srcType = src->getType();
322 if (!destType->isRecordType() && !srcType->isRecordType())
370 << CT << srcType << destType
450 /// CastsAwayConstness - Check if the pointer conversion from SrcType to
459 CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType,
471 assert((SrcType->isAnyPointerType() || SrcType->isMemberPointerType() |
    [all...]