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

/external/clang/lib/CodeGen/
H A DCGStmt.cpp358 QualType ExprTy = cast<Expr>(LastStmt)->getType(); local
359 if (hasAggregateEvaluationKind(ExprTy)) {
365 RetAlloca = CreateMemTemp(ExprTy);
H A DCGOpenMPRuntime.cpp5005 auto ExprTy = E->getType().getCanonicalType(); local
5008 if (auto *RefTy = ExprTy->getAs<ReferenceType>())
5009 ExprTy = RefTy->getPointeeType().getCanonicalType();
5043 return CGF.getTypeSize(ExprTy);
/external/clang/lib/Sema/
H A DSema.cpp390 QualType ExprTy = Context.getCanonicalType(E->getType()); local
393 if (ExprTy == TypeTy)
1371 QualType ExprTy = E.getType(); local
1373 QualType PointeeTy = ExprTy->getPointeeType();
1377 FunTy = ExprTy->getAs<FunctionType>();
H A DSemaInit.cpp969 QualType ExprTy = T; local
970 if (!ExprTy->isArrayType())
971 ExprTy = ExprTy.getNonLValueExprType(SemaRef.Context);
972 IList->setType(ExprTy);
973 StructuredList->setType(ExprTy);
H A DSemaExpr.cpp3621 QualType ExprTy = E->getType(); local
3622 assert(!ExprTy->isReferenceType());
3625 return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(),
3629 if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(),
3650 ExprTy = E->getType();
3651 assert(!ExprTy->isReferenceType());
3653 if (ExprTy->isFunctionType()) {
3665 if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(),

Completed in 200 milliseconds