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

References

tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
  746          DI != DIEnd; ) {
  747       if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>((*DI))) {
  752             if (isa<ObjCInterfaceDecl>(*DI) &&
  753                 !cast<ObjCInterfaceDecl>(*DI)->isThisDeclarationADefinition() &&
  754                 StartLoc == (*DI)->getBeginLoc())
  755               DG.push_back(*DI);
  759             ++DI;
  760           } while (DI != DIEnd);
  767           ++DI;
  772       if (ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>((*DI))) {
  777             if (isa<ObjCProtocolDecl>(*DI) &&
  778                 !cast<ObjCProtocolDecl>(*DI)->isThisDeclarationADefinition() &&
  779                 StartLoc == (*DI)->getBeginLoc())
  780               DG.push_back(*DI);
  784             ++DI;
  785           } while (DI != DIEnd);
  791       HandleTopLevelSingleDecl(*DI);
  792       ++DI;