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

/external/clang/lib/Sema/
H A DSema.cpp328 QualType ExprTy = Context.getCanonicalType(E->getType()); local
331 if (ExprTy == TypeTy)
1302 QualType ExprTy = E.getType(); local
1304 QualType PointeeTy = ExprTy->getPointeeType();
1308 FunTy = ExprTy->getAs<FunctionType>();
H A DSemaInit.cpp768 QualType ExprTy = T; local
769 if (!ExprTy->isArrayType())
770 ExprTy = ExprTy.getNonLValueExprType(SemaRef.Context);
771 IList->setType(ExprTy);
772 StructuredList->setType(ExprTy);
H A DSemaExpr.cpp3407 QualType ExprTy = E->getType(); local
3408 assert(!ExprTy->isReferenceType());
3411 return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(),
3415 if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(),
3436 ExprTy = E->getType();
3437 assert(!ExprTy->isReferenceType());
3439 if (ExprTy->isFunctionType()) {
3445 if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(),
/external/clang/lib/CodeGen/
H A DCGStmt.cpp262 QualType ExprTy = cast<Expr>(LastStmt)->getType(); local
263 if (hasAggregateEvaluationKind(ExprTy)) {
269 RetAlloca = CreateMemTemp(ExprTy);

Completed in 2631 milliseconds