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

References

tools/clang/lib/Sema/SemaDecl.cpp
13446     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_None;
13448     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByval;
13450     LSI->ImpCaptureStyle = CapturingScopeInfo::ImpCap_LambdaByref;
tools/clang/lib/Sema/SemaExpr.cpp
 5554   if (!CurLSI || CurLSI->ImpCaptureStyle == CurLSI->ImpCap_None ||
 5578     if (CurLSI->ImpCaptureStyle != CurLSI->ImpCap_None)
15939     ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref);
16106         if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None) {
16169     if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None && !Explicit) {
tools/clang/lib/Sema/SemaExprCXX.cpp
 1198       if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByref ||
 1199           CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_LambdaByval ||
 1200           CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_Block ||
 1201           CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_CapturedRegion ||
tools/clang/lib/Sema/SemaLambda.cpp
  116     if (LSI->ImpCaptureStyle == sema::LambdaScopeInfo::ImpCap_None) {
  493     LSI->ImpCaptureStyle = LambdaScopeInfo::ImpCap_LambdaByval;
  495     LSI->ImpCaptureStyle = LambdaScopeInfo::ImpCap_LambdaByref;
 1652       mapImplicitCaptureStyle(LSI->ImpCaptureStyle);