Lines Matching defs:OutTy
619 QualType OutTy = OutputExpr->getType();
620 if (Context.hasSameType(InTy, OutTy))
636 if (OutTy->isIntegerType() || OutTy->isPointerType())
638 else if (OutTy->isRealFloatingType())
649 uint64_t OutSize = Context.getTypeSize(OutTy);
681 if (OutTy->isStructureType() &&
698 (OutTy->isBooleanType() ? CK_IntegralToBoolean : CK_IntegralCast);
699 InputExpr = ImpCastExprToType(InputExpr, OutTy, castKind).get();
706 << InTy << OutTy << OutputExpr->getSourceRange()