Home | History | Annotate | Download | only in AST

Lines Matching refs:rproto

6396 /// inheritance hierarchy of 'rProto'.
6399 ObjCProtocolDecl *rProto) const {
6400 if (declaresSameEntity(lProto, rProto))
6402 for (auto *PI : rProto->protocols())
6847 const FunctionProtoType *rproto = dyn_cast<FunctionProtoType>(rbase);
6911 if (lproto && rproto) { // two C99 style function prototypes
6912 assert(!lproto->hasExceptionSpec() && !rproto->hasExceptionSpec() &&
6915 if (lproto->getNumParams() != rproto->getNumParams())
6919 if (lproto->isVariadic() != rproto->isVariadic())
6922 if (lproto->getTypeQuals() != rproto->getTypeQuals())
6926 !FunctionTypesMatchOnNSConsumedAttrs(rproto, lproto))
6933 QualType rParamType = rproto->getParamType(i).getUnqualifiedType();
6963 if (rproto) allLTypes = false;
6965 const FunctionProtoType *proto = lproto ? lproto : rproto;