Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaLambda.cpp2072 ExprCleanupObjects.push_back(Block); in BuildBlockForLambdaConversion()
H A DSemaExprCXX.cpp7327 assert(ExprCleanupObjects.size() >= FirstCleanup); in MaybeCreateExprWithCleanups()
7329 ExprCleanupObjects.size() == FirstCleanup); in MaybeCreateExprWithCleanups()
7333 auto Cleanups = llvm::ArrayRef(ExprCleanupObjects.begin() + FirstCleanup, in MaybeCreateExprWithCleanups()
7334 ExprCleanupObjects.size() - FirstCleanup); in MaybeCreateExprWithCleanups()
H A DSemaExpr.cpp7559 ExprCleanupObjects.push_back(E); in BuildCompoundLiteralExpr()
16755 ExprCleanupObjects.push_back(Result->getBlockDecl()); in ActOnBlockStmtExpr()
17679 ExprEvalContexts.emplace_back(NewContext, ExprCleanupObjects.size(), Cleanup, in PushExpressionEvaluationContext()
18028 ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects, in PopExpressionEvaluationContext()
18029 ExprCleanupObjects.end()); in PopExpressionEvaluationContext()
18048 ExprCleanupObjects.erase( in DiscardCleanupsInEvaluationContext()
18049 ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects, in DiscardCleanupsInEvaluationContext()
18050 ExprCleanupObjects.end()); in DiscardCleanupsInEvaluationContext()
H A DSemaDecl.cpp15803 assert(ExprCleanupObjects.size() == in ActOnFinishFunctionBody()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h782 SmallVector<ExprWithCleanups::CleanupObject, 8> ExprCleanupObjects; variable