Home | History | Annotate | Download | only in Serialization

Lines Matching defs:Capture

145     /// \brief Class used to capture the result of searching for an existing
1264 SmallVector<BlockDecl::Capture, 16> captures;
1273 captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr));
1448 typedef LambdaCapture Capture;
1459 = (Capture*)Reader.Context.Allocate(sizeof(Capture)*Lambda.NumCaptures);
1460 Capture *ToCapture = Lambda.Captures;
1469 *ToCapture++ = Capture(Loc, IsImplicit, Kind, nullptr,SourceLocation());
1475 *ToCapture++ = Capture(Loc, IsImplicit, Kind, Var, EllipsisLoc);