Home | History | Annotate | Download | only in Sema

Lines Matching defs:SrcTy

1443   QualType SrcTy, DestTy;
1448 SrcTy = SrcType->getPointeeType();
1454 SrcTy = SrcType;
1459 if (Context.hasSameUnqualifiedType(DestTy, SrcTy)) {
1464 SrcTy->isAnyCharacterType() || SrcTy->isVoidType()) {
1468 if (SrcTy->getAs<TagType>() || DestTy->getAs<TagType>()) {
1473 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) ||
1474 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) {
1475 if (Context.getTypeSize(DestTy) == Context.getTypeSize(SrcTy)) {