Home | History | Annotate | Download | only in AST

Lines Matching refs:Protocols

964   // Protocols?
965 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols();
966 if (!Protocols.empty()) {
967 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
968 E = Protocols.end(); I != E; ++I)
969 Out << (I == Protocols.begin() ? '<' : ',') << **I;
1001 // Protocols?
1002 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols();
1003 if (!Protocols.empty()) {
1005 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
1006 E = Protocols.end(); I != E; ++I)
1007 Out << (I == Protocols.begin() ? '<' : ',') << **I;