Home | History | Annotate | Download | only in AST

Lines Matching refs:proto

1208       ObjCProtocolDecl *Proto = (*P);
1209 Protocols.insert(Proto->getCanonicalDecl());
1210 for (ObjCProtocolDecl::protocol_iterator P = Proto->protocol_begin(),
1211 PE = Proto->protocol_end(); P != PE; ++P) {
1229 ObjCProtocolDecl *Proto = (*P);
1230 Protocols.insert(Proto->getCanonicalDecl());
1231 for (ObjCProtocolDecl::protocol_iterator P = Proto->protocol_begin(),
1232 PE = Proto->protocol_end(); P != PE; ++P)
1238 ObjCProtocolDecl *Proto = (*P);
1239 Protocols.insert(Proto->getCanonicalDecl());
1240 for (ObjCProtocolDecl::protocol_iterator P = Proto->protocol_begin(),
1241 PE = Proto->protocol_end(); P != PE; ++P)
5809 const FunctionProtoType *proto = lproto ? lproto : rproto;
5810 if (proto) {
5811 assert(!proto->hasExceptionSpec() && "C++ shouldn't be here");
5812 if (proto->isVariadic()) return QualType();
5818 unsigned proto_nargs = proto->getNumArgs();
5820 QualType argTy = proto->getArgType(i);
5835 FunctionProtoType::ExtProtoInfo EPI = proto->getExtProtoInfo();
5837 return getFunctionType(retType, proto->arg_type_begin(),
5838 proto->getNumArgs(), EPI);
6537 // We really shouldn't be making a no-proto type here, especially in C++.