Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCGExprCXX.cpp1820 QualType DestRecordTy; in EmitDynamicCastCall() local
1824 DestRecordTy = DestPTy->getPointeeType(); in EmitDynamicCastCall()
1827 DestRecordTy = DestTy->castAs<ReferenceType>()->getPointeeType(); in EmitDynamicCastCall()
1831 assert(DestRecordTy->isRecordType() && "dest type must be a record type!"); in EmitDynamicCastCall()
1836 CGF.CGM.GetAddrOfRTTIDescriptor(DestRecordTy.getUnqualifiedType()); in EmitDynamicCastCall()
1840 const CXXRecordDecl *DestDecl = DestRecordTy->getAsCXXRecordDecl(); in EmitDynamicCastCall()
/external/clang/lib/Sema/
DSemaCast.cpp2173 const RecordType *DestRecordTy = DestType->getAs<RecordType>(); in CheckCStyleCast() local
2175 if (DestRecordTy && Self.Context.hasSameUnqualifiedType(DestType, SrcType)){ in CheckCStyleCast()
2184 if (DestRecordTy && DestRecordTy->getDecl()->isUnion()) { in CheckCStyleCast()
2185 RecordDecl *RD = DestRecordTy->getDecl(); in CheckCStyleCast()