Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp6689 assert(ExprCleanupObjects.size() >= FirstCleanup); in MaybeCreateExprWithCleanups()
6691 ExprCleanupObjects.size() == FirstCleanup); in MaybeCreateExprWithCleanups()
6695 auto Cleanups = llvm::ArrayRef(ExprCleanupObjects.begin() + FirstCleanup, in MaybeCreateExprWithCleanups()
6696 ExprCleanupObjects.size() - FirstCleanup); in MaybeCreateExprWithCleanups()
H A DSemaExpr.cpp7254 ExprCleanupObjects.push_back(E); in BuildCompoundLiteralExpr()
16617 ExprCleanupObjects.push_back(Result->getBlockDecl()); in ActOnBlockStmtExpr()
17553 ExprEvalContexts.emplace_back(NewContext, ExprCleanupObjects.size(), Cleanup, in PushExpressionEvaluationContext()
18097 ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects, in PopExpressionEvaluationContext()
18098 ExprCleanupObjects.end()); in PopExpressionEvaluationContext()
18113 ExprCleanupObjects.erase( in DiscardCleanupsInEvaluationContext()
18114 ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects, in DiscardCleanupsInEvaluationContext()
18115 ExprCleanupObjects.end()); in DiscardCleanupsInEvaluationContext()
H A DSemaLambda.cpp2411 ExprCleanupObjects.push_back(Block); in BuildBlockForLambdaConversion()
H A DSemaDecl.cpp16669 assert(ExprCleanupObjects.size() == in ActOnFinishFunctionBody()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h6909 SmallVector<ExprWithCleanups::CleanupObject, 8> ExprCleanupObjects; variable