Home | History | Annotate | Download | only in AST

Lines Matching refs:Captures

1025                            ArrayRef<Capture> Captures,
1029 : Stmt(CapturedStmtClass), NumCaptures(Captures.size()),
1045 std::copy(Captures.begin(), Captures.end(), Buffer);
1056 ArrayRef<Capture> Captures,
1069 assert(CaptureInits.size() == Captures.size() && "wrong number of arguments");
1071 unsigned Size = sizeof(CapturedStmt) + sizeof(Stmt *) * (Captures.size() + 1);
1072 if (!Captures.empty()) {
1075 Size += sizeof(Capture) * Captures.size();
1079 return new (Mem) CapturedStmt(S, Kind, Captures, CaptureInits, CD, RD);
1101 for (const auto &I : captures()) {