Home | History | Annotate | Download | only in Sema

Lines Matching refs:SrcTy

1670   QualType SrcTy, DestTy;
1675 SrcTy = SrcType->getPointeeType();
1681 SrcTy = SrcType;
1686 if (Context.hasSameUnqualifiedType(DestTy, SrcTy)) {
1691 SrcTy->isAnyCharacterType() || SrcTy->isVoidType()) {
1695 if (SrcTy->getAs<TagType>() || DestTy->getAs<TagType>()) {
1700 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) ||
1701 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) {
1702 if (Context.getTypeSize(DestTy) == Context.getTypeSize(SrcTy)) {