Searched defs:ProtoRefs (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp459 Decl * const *ProtoRefs, unsigned NumProtoRefs,
597 IDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
706 Decl * const *ProtoRefs,
735 PList.set((ObjCProtocolDecl *const*)ProtoRefs, NumProtoRefs, Context);
758 PDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
892 Decl * const *ProtoRefs,
941 CDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
945 IDecl->mergeClassExtensionProtocolList((ObjCProtocolDecl*const*)ProtoRefs,
456 ActOnStartClassInterface(SourceLocation AtInterfaceLoc, IdentifierInfo *ClassName, SourceLocation ClassLoc, IdentifierInfo *SuperName, SourceLocation SuperLoc, Decl * const *ProtoRefs, unsigned NumProtoRefs, const SourceLocation *ProtoLocs, SourceLocation EndProtoLoc, AttributeList *AttrList) argument
703 ActOnStartProtocolInterface(SourceLocation AtProtoInterfaceLoc, IdentifierInfo *ProtocolName, SourceLocation ProtocolLoc, Decl * const *ProtoRefs, unsigned NumProtoRefs, const SourceLocation *ProtoLocs, SourceLocation EndProtoLoc, AttributeList *AttrList) argument
888 ActOnStartCategoryInterface(SourceLocation AtInterfaceLoc, IdentifierInfo *ClassName, SourceLocation ClassLoc, IdentifierInfo *CategoryName, SourceLocation CategoryLoc, Decl * const *ProtoRefs, unsigned NumProtoRefs, const SourceLocation *ProtoLocs, SourceLocation EndProtoLoc) argument
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp846 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs; local
847 ProtoRefs.reserve(NumProtoRefs);
849 ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
854 PD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
881 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs; local
882 ProtoRefs.reserve(NumProtoRefs);
884 ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
889 CD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),

Completed in 374 milliseconds