Home | History | Annotate | Download | only in Sema

Lines Matching refs:Captures

940   // For simple-captures, this is covered by the check below that any named
955 // Handle explicit captures.
958 for (auto C = Intro.Captures.begin(), E = Intro.Captures.end(); C != E;
1019 // captures a variable [...] whose declarative region is the
1377 SmallVector<LambdaCapture, 4> Captures;
1402 // Translate captures.
1403 for (unsigned I = 0, N = LSI->Captures.size(); I != N; ++I) {
1404 LambdaScopeInfo::Capture From = LSI->Captures[I];
1410 Captures.push_back(
1420 Captures.push_back(LambdaCapture(From.getLocation(), IsImplicit, Kind,
1492 if (Captures.empty() && CaptureDefault == LCD_None)
1518 Captures,