Home
last modified time | relevance | path

Searched refs:CaptureInits (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp1191 ArrayRef<Expr *> CaptureInits, in CapturedStmt() argument
1203 *Stored++ = CaptureInits[I]; in CapturedStmt()
1222 ArrayRef<Expr *> CaptureInits, in Create() argument
1234 assert(CaptureInits.size() == Captures.size() && "wrong number of arguments"); in Create()
1244 return new (Mem) CapturedStmt(S, Kind, Captures, CaptureInits, CD, RD); in Create()
H A DExprCXX.cpp1089 bool ExplicitResultType, ArrayRef<Expr *> CaptureInits, in LambdaExpr() argument
1099 assert(CaptureInits.size() == Captures.size() && "Wrong number of arguments"); in LambdaExpr()
1121 for (unsigned I = 0, N = CaptureInits.size(); I != N; ++I) in LambdaExpr()
1122 *Stored++ = CaptureInits[I]; in LambdaExpr()
1132 bool ExplicitParams, bool ExplicitResultType, ArrayRef<Expr *> CaptureInits, in Create() argument
1142 Captures, ExplicitParams, ExplicitResultType, CaptureInits, in Create()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaLambda.cpp1505 SmallVector<Expr *, 4> CaptureInits; in BuildLambdaExpr() local
1601 CaptureInits.push_back(From.getInitExpr()); in BuildLambdaExpr()
1607 CaptureInits.push_back(nullptr); in BuildLambdaExpr()
1623 CaptureInits.push_back(Init); in BuildLambdaExpr()
1657 CaptureInits, EndLoc, in BuildLambdaExpr()
H A DSemaStmt.cpp4234 SmallVectorImpl<Expr *> &CaptureInits, in buildCapturedStmtCaptureList() argument
4240 CaptureInits.push_back(Cap.getInitExpr()); in buildCapturedStmtCaptureList()
4245 CaptureInits.push_back(nullptr); in buildCapturedStmtCaptureList()
4254 CaptureInits.push_back(Cap.getInitExpr()); in buildCapturedStmtCaptureList()
4365 SmallVector<Expr *, 4> CaptureInits; in ActOnCapturedRegionEnd() local
4366 buildCapturedStmtCaptureList(Captures, CaptureInits, RSI->Captures); in ActOnCapturedRegionEnd()
4373 Captures, CaptureInits, CD, RD); in ActOnCapturedRegionEnd()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h3178 ArrayRef<Expr *> CaptureInits, CapturedDecl *CD, RecordDecl *RD);
3199 ArrayRef<Expr *> CaptureInits,
H A DExprCXX.h1686 ArrayRef<Expr *> CaptureInits, SourceLocation ClosingBrace,
1711 bool ExplicitResultType, ArrayRef<Expr *> CaptureInits,