Home
last modified time | relevance | path

Searched refs:ExprCleanupObjects (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaLambda.cpp2030 ExprCleanupObjects.push_back(Block); in BuildBlockForLambdaConversion()
H A DSemaExprCXX.cpp7307 assert(ExprCleanupObjects.size() >= FirstCleanup); in MaybeCreateExprWithCleanups()
7309 ExprCleanupObjects.size() == FirstCleanup); in MaybeCreateExprWithCleanups()
7313 auto Cleanups = llvm::makeArrayRef(ExprCleanupObjects.begin() + FirstCleanup, in MaybeCreateExprWithCleanups()
7314 ExprCleanupObjects.size() - FirstCleanup); in MaybeCreateExprWithCleanups()
H A DSemaExpr.cpp7319 ExprCleanupObjects.push_back(E); in BuildCompoundLiteralExpr()
16486 ExprCleanupObjects.push_back(Result->getBlockDecl()); in ActOnBlockStmtExpr()
17404 ExprEvalContexts.emplace_back(NewContext, ExprCleanupObjects.size(), Cleanup, in PushExpressionEvaluationContext()
17732 ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects, in PopExpressionEvaluationContext()
17733 ExprCleanupObjects.end()); in PopExpressionEvaluationContext()
17752 ExprCleanupObjects.erase( in DiscardCleanupsInEvaluationContext()
17753 ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects, in DiscardCleanupsInEvaluationContext()
17754 ExprCleanupObjects.end()); in DiscardCleanupsInEvaluationContext()
H A DSemaDecl.cpp15370 assert(ExprCleanupObjects.size() == in ActOnFinishFunctionBody()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h781 SmallVector<ExprWithCleanups::CleanupObject, 8> ExprCleanupObjects; variable