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

/external/clang/lib/Sema/
H A DSemaDeclObjC.cpp459 Decl * const *ProtoRefs, unsigned NumProtoRefs,
596 if (NumProtoRefs) {
597 IDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
707 unsigned NumProtoRefs,
735 PList.set((ObjCProtocolDecl *const*)ProtoRefs, NumProtoRefs, Context);
756 if (!err && NumProtoRefs ) {
758 PDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
893 unsigned NumProtoRefs,
940 if (NumProtoRefs) {
941 CDecl->setProtocolList((ObjCProtocolDecl*const*)ProtoRefs, NumProtoRefs,
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
[all...]
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp845 unsigned NumProtoRefs = Record[Idx++]; local
847 ProtoRefs.reserve(NumProtoRefs);
848 for (unsigned I = 0; I != NumProtoRefs; ++I)
851 ProtoLocs.reserve(NumProtoRefs);
852 for (unsigned I = 0; I != NumProtoRefs; ++I)
854 PD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
880 unsigned NumProtoRefs = Record[Idx++]; local
882 ProtoRefs.reserve(NumProtoRefs);
883 for (unsigned I = 0; I != NumProtoRefs; ++I)
886 ProtoLocs.reserve(NumProtoRefs);
[all...]

Completed in 1117 milliseconds