Lines Matching defs:DestTy
2060 QualType SrcTy, DestTy;
2066 DestTy = DestType->getPointeeType();
2072 DestTy = DestType->getPointeeType();
2076 if (Context.hasSameUnqualifiedType(DestTy, SrcTy)) {
2080 if (DestTy->isAnyCharacterType() || DestTy->isVoidType() ||
2085 if (SrcTy->getAs<TagType>() || DestTy->getAs<TagType>()) {
2090 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) ||
2091 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) {
2092 if (Context.getTypeSize(DestTy) == Context.getTypeSize(SrcTy)) {
2097 if (SrcTy->isDependentType() || DestTy->isDependentType()) {
3249 QualType DestTy = cast<PointerType>(DestType)->getPointeeType();
3252 const RecordDecl *DestRD = DestTy->getAsRecordDecl();