Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp7451 assert(ExprCleanupObjects.size() >= FirstCleanup); in MaybeCreateExprWithCleanups()
7453 ExprCleanupObjects.size() == FirstCleanup); in MaybeCreateExprWithCleanups()
7457 auto Cleanups = llvm::ArrayRef(ExprCleanupObjects.begin() + FirstCleanup, in MaybeCreateExprWithCleanups()
7458 ExprCleanupObjects.size() - FirstCleanup); in MaybeCreateExprWithCleanups()
H A DSemaLambda.cpp2291 ExprCleanupObjects.push_back(Block); in BuildBlockForLambdaConversion()
H A DSemaExpr.cpp7887 ExprCleanupObjects.push_back(E); in BuildCompoundLiteralExpr()
17267 ExprCleanupObjects.push_back(Result->getBlockDecl()); in ActOnBlockStmtExpr()
18198 ExprEvalContexts.emplace_back(NewContext, ExprCleanupObjects.size(), Cleanup, in PushExpressionEvaluationContext()
18670 ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects, in PopExpressionEvaluationContext()
18671 ExprCleanupObjects.end()); in PopExpressionEvaluationContext()
18690 ExprCleanupObjects.erase( in DiscardCleanupsInEvaluationContext()
18691 ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects, in DiscardCleanupsInEvaluationContext()
18692 ExprCleanupObjects.end()); in DiscardCleanupsInEvaluationContext()
H A DSemaDecl.cpp16395 assert(ExprCleanupObjects.size() == in ActOnFinishFunctionBody()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h809 SmallVector<ExprWithCleanups::CleanupObject, 8> ExprCleanupObjects; variable