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

References

tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
  678          DI != DIEnd; ) {
  679       if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>((*DI))) {
  684             if (isa<ObjCInterfaceDecl>(*DI) &&
  685                 !cast<ObjCInterfaceDecl>(*DI)->isThisDeclarationADefinition() &&
  686                 StartLoc == (*DI)->getBeginLoc())
  687               DG.push_back(*DI);
  691             ++DI;
  692           } while (DI != DIEnd);
  698       if (ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>((*DI))) {
  703             if (isa<ObjCProtocolDecl>(*DI) &&
  704                 !cast<ObjCProtocolDecl>(*DI)->isThisDeclarationADefinition() &&
  705                 StartLoc == (*DI)->getBeginLoc())
  706               DG.push_back(*DI);
  710             ++DI;
  711           } while (DI != DIEnd);
  717       HandleTopLevelSingleDecl(*DI);
  718       ++DI;