Home | History | Annotate | Download | only in AST

Lines Matching refs:Protocols

990   // Protocols?
991 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols();
992 if (!Protocols.empty()) {
993 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
994 E = Protocols.end(); I != E; ++I)
995 Out << (I == Protocols.begin() ? '<' : ',') << **I;
1028 // Protocols?
1029 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols();
1030 if (!Protocols.empty()) {
1032 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
1033 E = Protocols.end(); I != E; ++I)
1034 Out << (I == Protocols.begin() ? '<' : ',') << **I;