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

/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp763 unsigned NumProtoRefs = Record[Idx++]; local
765 ProtoRefs.reserve(NumProtoRefs);
766 for (unsigned I = 0; I != NumProtoRefs; ++I)
769 ProtoLocs.reserve(NumProtoRefs);
770 for (unsigned I = 0; I != NumProtoRefs; ++I)
772 PD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
798 unsigned NumProtoRefs = Record[Idx++]; local
800 ProtoRefs.reserve(NumProtoRefs);
801 for (unsigned I = 0; I != NumProtoRefs; ++I)
804 ProtoLocs.reserve(NumProtoRefs);
[all...]
/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp445 Decl * const *ProtoRefs, unsigned NumProtoRefs,
561 if (NumProtoRefs) {
562 IDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
653 unsigned NumProtoRefs,
681 PList.set((ObjCProtocolDecl *const*)ProtoRefs, NumProtoRefs, Context);
702 if (!err && NumProtoRefs ) {
704 PDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
821 unsigned NumProtoRefs,
868 if (NumProtoRefs) {
869 CDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
442 ActOnStartClassInterface(SourceLocation AtInterfaceLoc, IdentifierInfo *ClassName, SourceLocation ClassLoc, IdentifierInfo *SuperName, SourceLocation SuperLoc, Decl * const *ProtoRefs, unsigned NumProtoRefs, const SourceLocation *ProtoLocs, SourceLocation EndProtoLoc, AttributeList *AttrList) argument
649 ActOnStartProtocolInterface(SourceLocation AtProtoInterfaceLoc, IdentifierInfo *ProtocolName, SourceLocation ProtocolLoc, Decl * const *ProtoRefs, unsigned NumProtoRefs, const SourceLocation *ProtoLocs, SourceLocation EndProtoLoc, AttributeList *AttrList) argument
816 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 478 milliseconds