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

/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSema.cpp293 QualType ExprTy = Context.getCanonicalType(E->getType()); local
296 if (ExprTy == TypeTy)
1254 QualType ExprTy = E.getType(); local
1256 QualType PointeeTy = ExprTy->getPointeeType();
1260 FunTy = ExprTy->getAs<FunctionType>();
H A DSemaChecking.cpp3137 QualType ExprTy = E->getType();
3138 while (const TypeOfExprType *TET = dyn_cast<TypeOfExprType>(ExprTy)) {
3139 ExprTy = TET->getUnderlyingExpr()->getType();
3142 if (AT.matchesType(S.Context, ExprTy))
3153 ExprTy = E->getType();
3161 if (AT.matchesType(S.Context, ExprTy))
3169 if (ExprTy == S.Context.IntTy)
3171 ExprTy = S.Context.CharTy;
3177 QualType IntendedTy = ExprTy;
3180 if (ExprTy
[all...]
H A DSemaInit.cpp694 QualType ExprTy = T; local
695 if (!ExprTy->isArrayType())
696 ExprTy = ExprTy.getNonLValueExprType(SemaRef.Context);
697 IList->setType(ExprTy);
698 StructuredList->setType(ExprTy);
H A DSemaExpr.cpp3314 QualType ExprTy = E->getType(); local
3315 assert(!ExprTy->isReferenceType());
3318 return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(),
3322 if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(),
3332 ExprTy = E->getType();
3333 assert(!ExprTy->isReferenceType());
3335 if (ExprTy->isFunctionType()) {
3341 if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(),
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp234 QualType ExprTy = cast<Expr>(LastStmt)->getType(); local
235 if (hasAggregateEvaluationKind(ExprTy)) {
241 RetAlloca = CreateMemTemp(ExprTy);
H A DCGExpr.cpp1844 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType());
1852 LV.getQuals().setAddressSpace(ExprTy.getAddressSpace());
1884 ExprTy);

Completed in 206 milliseconds