Home | History | Annotate | Download | only in Sema

Lines Matching defs:Captures

902   // For simple-captures, this is covered by the check below that any named
917 // Handle explicit captures.
920 for (auto C = Intro.Captures.begin(), E = Intro.Captures.end(); C != E;
1005 // captures a variable [...] whose declarative region is the
1492 SmallVector<LambdaCapture, 4> Captures;
1526 // Translate captures.
1528 for (unsigned I = 0, N = LSI->Captures
1529 LambdaScopeInfo::Capture From = LSI->Captures[I];
1535 Captures.push_back(
1543 Captures.push_back(
1552 Captures.push_back(LambdaCapture(From.getLocation(), IsImplicit, Kind,
1572 if (Captures.empty() && CaptureDefault == LCD_None)
1597 Captures,