Home | History | Annotate | Download | only in Sema

Lines Matching defs:Captures

904   // For simple-captures, this is covered by the check below that any named
919 // Handle explicit captures.
922 for (auto C = Intro.Captures.begin(), E = Intro.Captures.end(); C != E;
998 // captures a variable [...] whose declarative region is the
1485 SmallVector<LambdaCapture, 4> Captures;
1519 // Translate captures.
1521 for (unsigned I = 0, N = LSI->Captures.size(); I != N; ++I, ++CurField) {
1522 LambdaScopeInfo::Capture From = LSI->Captures[I];
1528 Captures.push_back(
1537 Captures.push_back(
1546 Captures.push_back(LambdaCapture(From.getLocation(), IsImplicit, Kind,
1566 if (Captures.empty() && CaptureDefault == LCD_None)
1592 Captures,