Home | History | Annotate | Download | only in AST

Lines Matching full:captures

966         "captures by copy are expected to have a scalar type!");
988 ArrayRef<Capture> Captures,
992 Captures.size()),
1008 std::copy(Captures.begin(), Captures.end(), Buffer);
1019 ArrayRef<Capture> Captures,
1032 assert(CaptureInits.size() == Captures.size() && "wrong number of arguments");
1034 unsigned Size = sizeof(CapturedStmt) + sizeof(Stmt *) * (Captures.size() + 1);
1035 if (!Captures.empty()) {
1038 Size += sizeof(Capture) * Captures.size();
1042 return new (Mem) CapturedStmt(S, Kind, Captures, CaptureInits, CD, RD);
1064 for (const auto &I : captures()) {