Home
last modified time | relevance | path

Searched refs:DestRecordTy (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/CodeGen/
DCGExprCXX.cpp1706 QualType DestRecordTy; in EmitDynamicCast() local
1710 DestRecordTy = DestPTy->getPointeeType(); in EmitDynamicCast()
1714 DestRecordTy = DestTy->castAs<ReferenceType>()->getPointeeType(); in EmitDynamicCast()
1743 assert(DestRecordTy->isRecordType() && in EmitDynamicCast()
1746 DestTy, DestRecordTy, CastEnd); in EmitDynamicCast()
DCGCXXABI.h225 QualType DestRecordTy, llvm::BasicBlock *CastEnd) = 0;
DItaniumCXXABI.cpp127 QualType DestRecordTy,
977 QualType DestTy, QualType DestRecordTy, llvm::BasicBlock *CastEnd) { in EmitDynamicCastCall() argument
985 CGF.CGM.GetAddrOfRTTIDescriptor(DestRecordTy.getUnqualifiedType()); in EmitDynamicCastCall()
989 const CXXRecordDecl *DestDecl = DestRecordTy->getAsCXXRecordDecl(); in EmitDynamicCastCall()
DMicrosoftCXXABI.cpp80 QualType DestRecordTy,
690 QualType DestTy, QualType DestRecordTy, llvm::BasicBlock *CastEnd) { in EmitDynamicCastCall() argument
696 CGF.CGM.GetAddrOfRTTIDescriptor(DestRecordTy.getUnqualifiedType()); in EmitDynamicCastCall()
/external/clang/lib/Sema/
DSemaCast.cpp2221 const RecordType *DestRecordTy = DestType->getAs<RecordType>(); in CheckCStyleCast() local
2223 if (DestRecordTy && Self.Context.hasSameUnqualifiedType(DestType, SrcType)){ in CheckCStyleCast()
2232 if (DestRecordTy && DestRecordTy->getDecl()->isUnion()) { in CheckCStyleCast()
2233 RecordDecl *RD = DestRecordTy->getDecl(); in CheckCStyleCast()