Lines Matching defs:SrcTy
1425 QualType SrcTy, DestTy;
1430 SrcTy = SrcType->getPointeeType();
1436 SrcTy = SrcType;
1441 if (Context.hasSameUnqualifiedType(DestTy, SrcTy)) {
1446 SrcTy->isAnyCharacterType() || SrcTy->isVoidType()) {
1450 if (SrcTy->getAs<TagType>() || DestTy->getAs<TagType>()) {
1455 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) ||
1456 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) {
1457 if (Context.getTypeSize(DestTy) == Context.getTypeSize(SrcTy)) {