Home | History | Annotate | Download | only in Sema

Lines Matching defs:Captures

8275         // Warn about retain cycles where a block captures the LHS, but
10173 SmallVector<BlockDecl::Capture, 4> Captures;
10174 for (unsigned i = 0, e = BSI->Captures.size(); i != e; i++) {
10175 CapturingScopeInfo::Capture &Cap = BSI->Captures[i];
10180 Captures.push_back(NewCap);
10182 BSI->TheDecl->setCaptures(Context, Captures.begin(), Captures.end(),
10243 // If the block isn't obviously global, i.e. it captures anything at
11431 // each step, checking type-specific requirements, and adding captures if