Searched defs:OutTy (Results 1 - 1 of 1) sorted by relevance

/external/clang/lib/Sema/
H A DSemaStmt.cpp2306 QualType OutTy = OutputExpr->getType(); local
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()

Completed in 155 milliseconds