Home | History | Annotate | Download | only in AST

Lines Matching refs:Protocols

987   // Protocols?
988 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols();
989 if (!Protocols.empty()) {
990 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
991 E = Protocols.end(); I != E; ++I)
992 Out << (I == Protocols.begin() ? '<' : ',') << **I;
1025 // Protocols?
1026 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols();
1027 if (!Protocols.empty()) {
1029 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
1030 E = Protocols.end(); I != E; ++I)
1031 Out << (I == Protocols.begin() ? '<' : ',') << **I;