Home | History | Annotate | Download | only in Sema

Lines Matching defs:EltTy

5854     QualType EltTy = LV->getElementType();
5855 if (EltTy->isIntegralType(Context) && RHSType->isIntegralType(Context)) {
5856 int order = Context.getIntegerTypeOrder(EltTy, RHSType);
5858 RHS = ImpCastExprToType(RHS.take(), EltTy, CK_IntegralCast);
5865 if (EltTy->isRealFloatingType() && RHSType->isScalarType() &&
5867 int order = Context.getFloatingTypeOrder(EltTy, RHSType);
5869 RHS = ImpCastExprToType(RHS.take(), EltTy, CK_FloatingCast);