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

/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp760 unsigned NumProtoRefs = Record[Idx++]; local
762 ProtoRefs.reserve(NumProtoRefs);
763 for (unsigned I = 0; I != NumProtoRefs; ++I)
766 ProtoLocs.reserve(NumProtoRefs);
767 for (unsigned I = 0; I != NumProtoRefs; ++I)
769 PD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
795 unsigned NumProtoRefs = Record[Idx++]; local
797 ProtoRefs.reserve(NumProtoRefs);
798 for (unsigned I = 0; I != NumProtoRefs; ++I)
801 ProtoLocs.reserve(NumProtoRefs);
[all...]
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp430 Decl * const *ProtoRefs, unsigned NumProtoRefs,
546 if (NumProtoRefs) {
547 IDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
638 unsigned NumProtoRefs,
666 PList.set((ObjCProtocolDecl *const*)ProtoRefs, NumProtoRefs, Context);
687 if (!err && NumProtoRefs ) {
689 PDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
804 unsigned NumProtoRefs,
855 if (NumProtoRefs) {
856 CDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
427 ActOnStartClassInterface(SourceLocation AtInterfaceLoc, IdentifierInfo *ClassName, SourceLocation ClassLoc, IdentifierInfo *SuperName, SourceLocation SuperLoc, Decl * const *ProtoRefs, unsigned NumProtoRefs, const SourceLocation *ProtoLocs, SourceLocation EndProtoLoc, AttributeList *AttrList) argument
634 ActOnStartProtocolInterface(SourceLocation AtProtoInterfaceLoc, IdentifierInfo *ProtocolName, SourceLocation ProtocolLoc, Decl * const *ProtoRefs, unsigned NumProtoRefs, const SourceLocation *ProtoLocs, SourceLocation EndProtoLoc, AttributeList *AttrList) argument
799 ActOnStartCategoryInterface(SourceLocation AtInterfaceLoc, IdentifierInfo *ClassName, SourceLocation ClassLoc, IdentifierInfo *CategoryName, SourceLocation CategoryLoc, Decl * const *ProtoRefs, unsigned NumProtoRefs, const SourceLocation *ProtoLocs, SourceLocation EndProtoLoc) argument
[all...]

Completed in 89 milliseconds