Home | History | Annotate | Download | only in Serialization

Lines Matching refs:capture

805     const BlockDecl::Capture &capture = *i;
806 Writer.AddDeclRef(capture.getVariable(), Record);
809 if (capture.isByRef()) flags |= 1;
810 if (capture.isNested()) flags |= 2;
811 if (capture.hasCopyExpr()) flags |= 4;
814 if (capture.hasCopyExpr()) Writer.AddStmt(capture.getCopyExpr());