Home | History | Annotate | Download | only in AST

Lines Matching defs:Protocols

1149   // Protocols?
1150 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols();
1151 if (!Protocols.empty()) {
1152 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
1153 E = Protocols.end(); I != E; ++I)
1154 Out << (I == Protocols.begin() ? '<' : ',') << **I;
1187 // Protocols?
1188 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols();
1189 if (!Protocols.empty()) {
1191 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
1192 E = Protocols.end(); I != E; ++I)
1193 Out << (I == Protocols.begin() ? '<' : ',') << **I;