reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
 3555       if (!VD->hasAttr<BlocksAttr>() && !BlockByCopyDeclsPtrSet.count(VD)) {
 3555       if (!VD->hasAttr<BlocksAttr>() && !BlockByCopyDeclsPtrSet.count(VD)) {
 3556         BlockByCopyDeclsPtrSet.insert(VD);
 3557         BlockByCopyDecls.push_back(VD);
 3559       if (VD->hasAttr<BlocksAttr>() && !BlockByRefDeclsPtrSet.count(VD)) {
 3559       if (VD->hasAttr<BlocksAttr>() && !BlockByRefDeclsPtrSet.count(VD)) {
 3560         BlockByRefDeclsPtrSet.insert(VD);
 3561         BlockByRefDecls.push_back(VD);
 3565       if (VD->hasAttr<BlocksAttr>() ||
 3566           VD->getType()->isObjCObjectPointerType() ||
 3567           VD->getType()->isBlockPointerType())
 3568         ImportedBlockDecls.insert(VD);