Searched refs:ExprTy (Results 1 - 6 of 6) sorted by relevance

/external/clang/lib/Sema/
H A DSemaChecking.cpp3101 QualType ExprTy = E->getType();
3102 while (const TypeOfExprType *TET = dyn_cast<TypeOfExprType>(ExprTy)) {
3103 ExprTy = TET->getUnderlyingExpr()->getType();
3106 if (AT.matchesType(S.Context, ExprTy))
3117 ExprTy = E->getType();
3125 if (AT.matchesType(S.Context, ExprTy))
3133 if (ExprTy == S.Context.IntTy)
3135 ExprTy = S.Context.CharTy;
3140 if (auto EnumTy = ExprTy->getAs<EnumType>()) {
3141 ExprTy
[all...]
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);
H A DCGExpr.cpp1930 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
1938 LV.getQuals().setAddressSpace(ExprTy.getAddressSpace());
1970 ExprTy);

Completed in 177 milliseconds