Home | History | Annotate | Download | only in Sema

Lines Matching defs:SrcTy

4057   QualType SrcTy = E->getType();
4058 if (Context.getTypeSize(DstTy) != Context.getTypeSize(SrcTy))
4062 << SrcTy
4382 QualType SrcTy = Src.get()->getType();
4383 if (Context.hasSameUnqualifiedType(SrcTy, DestTy))
4386 switch (Type::ScalarTypeKind SrcKind = SrcTy->getScalarTypeKind()) {
4483 QualType ET = SrcTy->castAs<ComplexType>()->getElementType();
4493 SrcTy->castAs<ComplexType>()->getElementType(),
4512 QualType ET = SrcTy->castAs<ComplexType>()->getElementType();
4522 SrcTy->castAs<ComplexType>()->getElementType(),
4562 SrcTy = CastExpr->getType();
4564 // If SrcTy is a VectorType, the total size must match to explicitly cast to
4568 if (SrcTy->isVectorType()) {
4569 if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy)
4571 (DestTy.getCanonicalType() != SrcTy.getCanonicalType()))) {
4573 << DestTy << SrcTy << R;
4583 if (SrcTy->isPointerType())
4586 << DestTy << SrcTy << R;