Searched refs:ProtoRefs (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaDeclObjC.cpp | 539 ObjCProtocolDecl *const *ProtoRefs, in diagnoseUseOfProtocols() argument 542 assert(ProtoRefs); in diagnoseUseOfProtocols() 546 (void)TheSema.DiagnoseUseOfDecl(ProtoRefs[i], ProtoLocs[i], in diagnoseUseOfProtocols() 979 Decl *const *ProtoRefs, unsigned NumProtoRefs, in ActOnStartClassInterface() argument 1100 diagnoseUseOfProtocols(SemaRef, IDecl, (ObjCProtocolDecl *const *)ProtoRefs, in ActOnStartClassInterface() 1102 IDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs, in ActOnStartClassInterface() 1218 SourceLocation ProtocolLoc, Decl *const *ProtoRefs, unsigned NumProtoRefs, in ActOnStartProtocolInterface() argument 1257 PList.set((ObjCProtocolDecl *const*)ProtoRefs, NumProtoRefs, Context); in ActOnStartProtocolInterface() 1281 diagnoseUseOfProtocols(SemaRef, PDecl, (ObjCProtocolDecl *const *)ProtoRefs, in ActOnStartProtocolInterface() 1283 PDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs, in ActOnStartProtocolInterface() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaObjC.h | 265 Decl *const *ProtoRefs, unsigned NumProtoRefs, 301 Decl *const *ProtoRefs, unsigned NumProtoRefs,
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 1367 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs; in ReadObjCDefinitionData() local 1368 ProtoRefs.reserve(NumProtoRefs); in ReadObjCDefinitionData() 1370 ProtoRefs.push_back(readDeclAs<ObjCProtocolDecl>()); in ReadObjCDefinitionData() 1375 Data.ReferencedProtocols.set(ProtoRefs.data(), NumProtoRefs, in ReadObjCDefinitionData() 1443 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs; in VisitObjCCategoryDecl() local 1444 ProtoRefs.reserve(NumProtoRefs); in VisitObjCCategoryDecl() 1446 ProtoRefs.push_back(readDeclAs<ObjCProtocolDecl>()); in VisitObjCCategoryDecl() 1451 CD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(), in VisitObjCCategoryDecl() 1457 (ObjCProtocolDecl *const *)ProtoRefs.data(), NumProtoRefs, in VisitObjCCategoryDecl()
|