Lines Matching defs:OutTy
612 QualType OutTy = OutputExpr->getType();
613 if (Context.hasSameType(InTy, OutTy))
629 if (OutTy->isIntegerType() || OutTy->isPointerType())
631 else if (OutTy->isRealFloatingType())
642 uint64_t OutSize = Context.getTypeSize(OutTy);
679 if (OutTy->isStructureType() &&
696 (OutTy->isBooleanType() ? CK_IntegralToBoolean : CK_IntegralCast);
697 InputExpr = ImpCastExprToType(InputExpr, OutTy, castKind).get();
704 << InTy << OutTy << OutputExpr->getSourceRange()