Home | History | Annotate | Download | only in Sema

Lines Matching refs:OutTy

2306     QualType OutTy = OutputExpr->getType();
2307 if (Context.hasSameType(InTy, OutTy))
2323 if (OutTy->isIntegerType() || OutTy->isPointerType())
2325 else if (OutTy->isRealFloatingType())
2336 uint64_t OutSize = Context.getTypeSize(OutTy);
2376 (OutTy->isBooleanType() ? CK_IntegralToBoolean : CK_IntegralCast);
2377 InputExpr = ImpCastExprToType(InputExpr, OutTy, castKind).take();
2385 << InTy << OutTy << OutputExpr->getSourceRange()