Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaLambda.cpp2027 ExprCleanupObjects.push_back(Block); in BuildBlockForLambdaConversion()
H A DSemaExprCXX.cpp7069 assert(ExprCleanupObjects.size() >= FirstCleanup); in MaybeCreateExprWithCleanups()
7071 ExprCleanupObjects.size() == FirstCleanup); in MaybeCreateExprWithCleanups()
7075 auto Cleanups = llvm::makeArrayRef(ExprCleanupObjects.begin() + FirstCleanup, in MaybeCreateExprWithCleanups()
7076 ExprCleanupObjects.size() - FirstCleanup); in MaybeCreateExprWithCleanups()
H A DSemaExpr.cpp7023 ExprCleanupObjects.push_back(E); in BuildCompoundLiteralExpr()
15718 ExprCleanupObjects.push_back(Result->getBlockDecl()); in ActOnBlockStmtExpr()
16531 ExprEvalContexts.emplace_back(NewContext, ExprCleanupObjects.size(), Cleanup, in PushExpressionEvaluationContext()
16840 ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects, in PopExpressionEvaluationContext()
16841 ExprCleanupObjects.end()); in PopExpressionEvaluationContext()
16860 ExprCleanupObjects.erase( in DiscardCleanupsInEvaluationContext()
16861 ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects, in DiscardCleanupsInEvaluationContext()
16862 ExprCleanupObjects.end()); in DiscardCleanupsInEvaluationContext()
H A DSemaDecl.cpp14809 assert(ExprCleanupObjects.size() == in ActOnFinishFunctionBody()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h770 SmallVector<ExprWithCleanups::CleanupObject, 8> ExprCleanupObjects; variable