Searched defs:Protocols (Results 1 - 17 of 17) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp1325 const ObjCList<ObjCProtocolDecl> &Protocols = OID->getReferencedProtocols(); local
1363 const ObjCList<ObjCProtocolDecl> &Protocols = PID->getReferencedProtocols(); local
[all...]
H A DODRHash.cpp934 auto Protocols = T->getProtocols(); local
952 auto Protocols = T->getProtocols(); local
H A DDeclObjC.cpp719 const ObjCList<ObjCProtocolDecl> &Protocols = local
H A DJSONNodeDumper.cpp951 llvm::json::Array Protocols; local
967 llvm::json::Array Protocols; local
979 llvm::json::Array Protocols; local
[all...]
H A DASTImporter.cpp1566 SmallVector<ObjCProtocolDecl *, 4> Protocols; local
[all...]
H A DASTContext.cpp4908 static bool areSortedAndUniqued(ArrayRef<ObjCProtocolDecl *> Protocols) { argument
2479 CollectInheritedProtocols(const Decl *CDecl, llvm::SmallPtrSet<ObjCProtocolDecl*, 8> &Protocols) argument
4922 SortAndUniqueProtocols(SmallVectorImpl<ObjCProtocolDecl *> &Protocols) argument
4935 getObjCObjectType(QualType BaseType, ObjCProtocolDecl * const *Protocols, unsigned NumProtocols) const argument
8931 SmallVector<ObjCProtocolDecl *, 8> Protocols; local
8982 SmallVector<ObjCProtocolDecl *, 8> Protocols; local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp1522 ParseObjCProtocolReferences(SmallVectorImpl<Decl *> &Protocols, argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp668 const ObjCList<ObjCProtocolDecl> &Protocols = IDecl->getReferencedProtocols(); local
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1200 SmallVector<llvm::Constant*, 16> Protocols; variable
1341 llvm::Constant *GenerateProtocolList(ArrayRef<llvm::Constant*> Protocols) { argument
1383 SmallVector<llvm::Constant*, 16> Protocols; variable
1923 SmallVector<llvm::Constant*, 16> Protocols; variable
2887 GenerateClassStructure( llvm::Constant *MetaClass, llvm::Constant *SuperClass, unsigned info, const char *Name, llvm::Constant *Version, llvm::Constant *InstanceSize, llvm::Constant *IVars, llvm::Constant *Methods, llvm::Constant *Protocols, llvm::Constant *IvarOffsets, llvm::Constant *Properties, llvm::Constant *StrongIvarBitmap, llvm::Constant *WeakIvarBitmap, bool isMeta) argument
3022 GenerateProtocolList(ArrayRef<std::string> Protocols) argument
3097 SmallVector<std::string, 16> Protocols; local
3243 SmallVector<std::string, 16> Protocols; local
3517 SmallVector<std::string, 16> Protocols; local
[all...]
H A DCGObjCMac.cpp894 llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> Protocols; member in class:__anon1740::CGObjCCommonMac
3558 llvm::Constant *Protocols local
3651 EmitMetaClass(const ObjCImplementationDecl *ID, llvm::Constant *Protocols, ArrayRef<const ObjCMethodDecl*> Methods) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp5228 RewriteObjCProtocolListMetaData( const ObjCList<ObjCProtocolDecl> &Protocols, StringRef prefix, StringRef ClassName, std::string &Result) argument
[all...]
H A DRewriteModernObjC.cpp7065 const ObjCList<ObjCProtocolDecl> &Protocols = CDecl->getReferencedProtocols(); local
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp6794 const ObjCList<ObjCProtocolDecl> &Protocols = local
6819 const ObjCList<ObjCProtocolDecl> &Protocols = local
8011 const ObjCList<ObjCProtocolDecl> &Protocols local
7656 CodeCompleteObjCProtocolReferences( ArrayRef<IdentifierLocPair> Protocols) argument
8034 const ObjCList<ObjCProtocolDecl> &Protocols = local
8057 const ObjCList<ObjCProtocolDecl> &Protocols = local
[all...]
H A DSemaDeclObjC.cpp1293 FindProtocolDeclaration(bool WarnOnDeclarations, bool ForObjCContainer, ArrayRef<IdentifierLocPair> ProtocolId, SmallVectorImpl<Decl *> &Protocols) argument
H A DSemaType.cpp1041 BuildObjCTypeParamType(const ObjCTypeParamDecl *Decl, SourceLocation ProtocolLAngleLoc, ArrayRef<ObjCProtocolDecl *> Protocols, ArrayRef<SourceLocation> ProtocolLocs, SourceLocation ProtocolRAngleLoc, bool FailOnError) argument
1064 BuildObjCObjectType(QualType BaseType, SourceLocation Loc, SourceLocation TypeArgsLAngleLoc, ArrayRef<TypeSourceInfo *> TypeArgs, SourceLocation TypeArgsRAngleLoc, SourceLocation ProtocolLAngleLoc, ArrayRef<ObjCProtocolDecl *> Protocols, ArrayRef<SourceLocation> ProtocolLocs, SourceLocation ProtocolRAngleLoc, bool FailOnError) argument
1139 actOnObjCTypeArgsAndProtocolQualifiers( Scope *S, SourceLocation Loc, ParsedType BaseType, SourceLocation TypeArgsLAngleLoc, ArrayRef<ParsedType> TypeArgs, SourceLocation TypeArgsRAngleLoc, SourceLocation ProtocolLAngleLoc, ArrayRef<Decl *> Protocols, ArrayRef<SourceLocation> ProtocolLocs, SourceLocation ProtocolRAngleLoc) argument
[all...]
H A DTreeTransform.h13820 RebuildObjCTypeParamType( const ObjCTypeParamDecl *Decl, SourceLocation ProtocolLAngleLoc, ArrayRef<ObjCProtocolDecl *> Protocols, ArrayRef<SourceLocation> ProtocolLocs, SourceLocation ProtocolRAngleLoc) argument
13833 RebuildObjCObjectType( QualType BaseType, SourceLocation Loc, SourceLocation TypeArgsLAngleLoc, ArrayRef<TypeSourceInfo *> TypeArgs, SourceLocation TypeArgsRAngleLoc, SourceLocation ProtocolLAngleLoc, ArrayRef<ObjCProtocolDecl *> Protocols, ArrayRef<SourceLocation> ProtocolLocs, SourceLocation ProtocolRAngleLoc) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp1118 SmallVector<ObjCProtocolDecl *, 16> Protocols; local

Completed in 571 milliseconds