reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Serialization/ASTReaderDecl.cpp
 1688     Lambda.Dependent = Record.readInt();
 1689     Lambda.IsGenericLambda = Record.readInt();
 1690     Lambda.CaptureDefault = Record.readInt();
 1691     Lambda.NumCaptures = Record.readInt();
 1692     Lambda.NumExplicitCaptures = Record.readInt();
 1693     Lambda.HasKnownInternalLinkage = Record.readInt();
 1694     Lambda.ManglingNumber = Record.readInt();
 1695     Lambda.ContextDecl = ReadDeclID();
 1696     Lambda.Captures = (Capture *)Reader.getContext().Allocate(
 1697         sizeof(Capture) * Lambda.NumCaptures);
 1698     Capture *ToCapture = Lambda.Captures;
 1699     Lambda.MethodTyInfo = GetTypeSourceInfo();
 1700     for (unsigned I = 0, N = Lambda.NumCaptures; I != N; ++I) {