Lines Matching defs:capture
1432 // For C++11 Lambdas a Field will be the same as a Capture, but the Capture
4550 const BlockDecl::Capture *Capture;
4624 // 'this' capture.
4629 chunk.Capture = nullptr;
4634 for (const auto &capture : blockDecl->captures()) {
4635 const VarDecl *variable = capture.getVariable();
4636 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
4645 chunk.Capture = &capture;
4654 const BlockDecl::Capture *capture = Chunk.Capture;
4656 // If we have a null capture, this must be the C++ 'this' capture.
4657 if (!capture) {
4672 const VarDecl *variable = capture->getVariable();
4676 if (capture->isByRef()) {