Home
last modified time | relevance | path

Searched refs:ExprTy (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/AST/
H A DExprOpenMP.h158 OMPArrayShapingExpr(QualType ExprTy, Expr *Op, SourceLocation L,
320 OMPIteratorExpr(QualType ExprTy, SourceLocation IteratorKwLoc,
/llvm-project-15.0.7/clang/lib/Sema/
H A DSema.cpp649 QualType ExprTy = Context.getCanonicalType(E->getType()); in ImpCastExprToType() local
652 if (ExprTy == TypeTy) in ImpCastExprToType()
2469 QualType ExprTy = E.getType(); in tryExprAsCall() local
2471 QualType PointeeTy = ExprTy->getPointeeType(); in tryExprAsCall()
2475 FunTy = ExprTy->getAs<FunctionType>(); in tryExprAsCall()
H A DSemaChecking.cpp10036 QualType ExprTy = E->getType(); in checkFormatExpr() local
10044 if (ExprTy->canDecayToPointerType()) in checkFormatExpr()
10045 ExprTy = S.Context.getDecayedType(ExprTy); in checkFormatExpr()
10075 ExprTy = E->getType(); in checkFormatExpr()
10084 AT.matchesType(S.Context, ExprTy); in checkFormatExpr()
10098 if (ExprTy == S.Context.IntTy && in checkFormatExpr()
10101 ExprTy = S.Context.CharTy; in checkFormatExpr()
10114 QualType IntendedTy = ExprTy; in checkFormatExpr()
10118 !ExprTy->isCharType()) { in checkFormatExpr()
10268 switch (S.isValidVarArgType(ExprTy)) { in checkFormatExpr()
[all …]
H A DSemaInit.cpp1200 QualType ExprTy = T; in CheckExplicitInitList() local
1201 if (!ExprTy->isArrayType()) in CheckExplicitInitList()
1202 ExprTy = ExprTy.getNonLValueExprType(SemaRef.Context); in CheckExplicitInitList()
1204 IList->setType(ExprTy); in CheckExplicitInitList()
1205 StructuredList->setType(ExprTy); in CheckExplicitInitList()
H A DSemaExpr.cpp4163 QualType ExprTy = E->getType(); in ActOnParenExpr() local
4165 !E->isLValue() && ExprTy->hasFloatingRepresentation()) in ActOnParenExpr()
4261 QualType ExprTy = E->getType(); in CheckUnaryExprOrTypeTraitOperand() local
4262 assert(!ExprTy->isReferenceType()); in CheckUnaryExprOrTypeTraitOperand()
4286 return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(), in CheckUnaryExprOrTypeTraitOperand()
4290 if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(), in CheckUnaryExprOrTypeTraitOperand()
4312 ExprTy = E->getType(); in CheckUnaryExprOrTypeTraitOperand()
4313 assert(!ExprTy->isReferenceType()); in CheckUnaryExprOrTypeTraitOperand()
4315 if (ExprTy->isFunctionType()) { in CheckUnaryExprOrTypeTraitOperand()
4321 if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(), in CheckUnaryExprOrTypeTraitOperand()
H A DSemaOpenMP.cpp20386 QualType ExprTy = RefExpr->getType().getNonReferenceType(); in ActOnOpenMPDependClause() local
20392 ExprTy = ATy->getElementType(); in ActOnOpenMPDependClause()
20394 ExprTy = BaseType->getPointeeType(); in ActOnOpenMPDependClause()
20395 ExprTy = ExprTy.getNonReferenceType(); in ActOnOpenMPDependClause()
20417 DSAStack->getOMPDependT().getTypePtr() == ExprTy.getTypePtr()))) { in ActOnOpenMPDependClause()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmt.cpp519 QualType ExprTy = E->getType(); in EmitCompoundStmtWithoutScope() local
520 if (hasAggregateEvaluationKind(ExprTy)) { in EmitCompoundStmtWithoutScope()
526 RetAlloca = CreateMemTemp(ExprTy); in EmitCompoundStmtWithoutScope()
H A DCGExpr.cpp2964 QualType ExprTy = getContext().getCanonicalType(E->getSubExpr()->getType()); in EmitUnaryOpLValue() local
2976 LV.getQuals().setAddressSpace(ExprTy.getAddressSpace()); in EmitUnaryOpLValue()
3001 QualType T = ExprTy->castAs<ComplexType>()->getElementType(); in EmitUnaryOpLValue()
H A DCGOpenMPRuntime.cpp7395 QualType ExprTy = E->getType().getCanonicalType(); in getExprTypeSize() local
7412 if (const auto *RefTy = ExprTy->getAs<ReferenceType>()) in getExprTypeSize()
7413 ExprTy = RefTy->getPointeeType().getCanonicalType(); in getExprTypeSize()
7466 return CGF.getTypeSize(ExprTy); in getExprTypeSize()
/llvm-project-15.0.7/clang/lib/AST/
H A DExpr.cpp4869 OMPArrayShapingExpr::OMPArrayShapingExpr(QualType ExprTy, Expr *Op, in OMPArrayShapingExpr() argument
4872 : Expr(OMPArrayShapingExprClass, ExprTy, VK_LValue, OK_Ordinary), LPLoc(L), in OMPArrayShapingExpr()
4991 QualType ExprTy, SourceLocation IteratorKwLoc, SourceLocation L, in OMPIteratorExpr() argument
4994 : Expr(OMPIteratorExprClass, ExprTy, VK_LValue, OK_Ordinary), in OMPIteratorExpr()