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

References

tools/clang/include/clang/AST/DeclCXX.h
 1026     return isLambda() ? getLambdaData().Captures : nullptr;
tools/clang/lib/AST/DeclCXX.cpp
 1455   for (const LambdaCapture *C = Lambda.Captures, *CEnd = C + Lambda.NumCaptures;
tools/clang/lib/AST/ExprCXX.cpp
 1195   Data.Captures =
 1197   LambdaCapture *ToCapture = Data.Captures;
 1245   return getLambdaClass()->getLambdaData().Captures;
 1263   return Data.Captures + Data.NumExplicitCaptures;
tools/clang/lib/Serialization/ASTReaderDecl.cpp
 1696     Lambda.Captures = (Capture *)Reader.getContext().Allocate(
 1698     Capture *ToCapture = Lambda.Captures;
tools/clang/lib/Serialization/ASTWriter.cpp
 6232       const LambdaCapture &Capture = Lambda.Captures[I];